@botbotgo/agent-harness 0.0.44 → 0.0.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botbotgo/agent-harness",
3
- "version": "0.0.44",
3
+ "version": "0.0.46",
4
4
  "description": "Workspace runtime for multi-agent applications",
5
5
  "type": "module",
6
6
  "packageManager": "npm@10.9.2",
@@ -1,29 +0,0 @@
1
- # agent-harness feature: schema version for this declarative config object.
2
- apiVersion: agent-harness/v1alpha1
3
- # agent-harness feature: object type for a named embedding-model preset.
4
- kind: EmbeddingModel
5
- metadata:
6
- # agent-harness feature: stable embedding model object id used by refs such as `embedding-model/default`.
7
- name: default
8
- spec:
9
- # ====================
10
- # LangChain v1 Features
11
- # ====================
12
- # LangChain aligned feature: provider family or integration namespace for an embeddings implementation.
13
- provider: ollama
14
- # LangChain aligned feature: concrete embedding model identifier passed to the provider integration.
15
- model: nomic-embed-text
16
- # LangChain aligned feature: provider-specific initialization options for embeddings.
17
- baseUrl: https://ollama-rtx-4070.easynet.world/
18
-
19
- # ===================
20
- # DeepAgents Features
21
- # ===================
22
- # DeepAgents does not define a separate embeddings abstraction. Embedding models are consumed indirectly
23
- # by retrieval tools that a DeepAgent may call.
24
-
25
- # ======================
26
- # agent-harness Features
27
- # ======================
28
- # This object is packaged and referenced through retrieval-oriented workspace tools such as the RAG index builder
29
- # and query tool, not through `agent.modelRef`.
@@ -1,26 +0,0 @@
1
- # agent-harness feature: schema version for this declarative config object.
2
- apiVersion: agent-harness/v1alpha1
3
- # agent-harness feature: object type for a named vector-store preset.
4
- kind: VectorStore
5
- metadata:
6
- # agent-harness feature: stable vector store object id used by refs such as `vector-store/default`.
7
- name: default
8
- spec:
9
- # ====================
10
- # LangChain v1 Features
11
- # ====================
12
- # LangChain aligned feature: concrete vector store implementation.
13
- # The built-in runtime currently supports `LibSQLVectorStore` for SQLite/libSQL-backed vector retrieval.
14
- storeKind: LibSQLVectorStore
15
- # LangChain aligned feature: libSQL connection URL.
16
- # Local SQLite files use the `file:` prefix.
17
- url: file:.agent/vector-store.db
18
- # LangChain aligned feature: target table and embedding column.
19
- table: rag_chunks
20
- column: embedding
21
-
22
- # ======================
23
- # agent-harness Features
24
- # ======================
25
- # Retrieval tools use this to resolve their default embeddings when indexing or querying this vector store.
26
- embeddingModelRef: embedding-model/default