@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/README.md +369 -29
- package/dist/config/embedding-models.yaml +28 -0
- package/dist/config/mcp.yaml +3 -18
- package/dist/config/models.yaml +19 -19
- package/dist/config/stores.yaml +10 -12
- package/dist/config/tools.yaml +3 -11
- package/dist/config/vector-stores.yaml +25 -0
- package/dist/config/workspace.yaml +20 -18
- package/dist/contracts/types.d.ts +4 -2
- package/dist/extensions.js +3 -0
- package/dist/package-version.d.ts +1 -1
- package/dist/package-version.js +1 -1
- package/dist/persistence/file-store.d.ts +9 -1
- package/dist/persistence/file-store.js +16 -0
- package/dist/resource/resource-impl.d.ts +1 -0
- package/dist/runtime/harness.d.ts +3 -0
- package/dist/runtime/harness.js +262 -112
- package/dist/runtime/thread-memory-sync.js +2 -0
- package/dist/tool-modules.d.ts +1 -0
- package/dist/tool-modules.js +11 -0
- package/dist/tools.d.ts +2 -0
- package/dist/workspace/object-loader.js +23 -12
- package/dist/workspace/resource-compilers.js +1 -0
- package/dist/workspace/support/workspace-ref-utils.d.ts +1 -1
- package/dist/workspace/support/workspace-ref-utils.js +1 -1
- package/dist/workspace/tool-hydration.js +1 -0
- package/package.json +1 -1
- package/dist/config/embedding-model.yaml +0 -29
- package/dist/config/vector-store.yaml +0 -26
package/package.json
CHANGED
|
@@ -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
|