Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,20 @@ knowhereapi-main/
│ ├── web/ # Frontend (separate repo: knowhere-dashboard)
│ └── docs/ # Internal documentation
├── packages/
│ ├── shared-python/shared/ # Shared library (pip: knowhere-shared)
│ │ ├── models/database/ # SQLAlchemy ORM models
│ │ ├── models/schemas/ # Pydantic request/response schemas
│ │ ├── services/retrieval/ # Core retrieval engine
│ │ ├── services/chunks/ # DataFrame → ChunkPayload conversion
│ │ ├── services/ai/ # LLM prompt service & AI client
│ │ └── utils/ # Text, file, and chunk utilities
│ ├── sdk-python/ # Public Python SDK
│ ├── sdk-typescript/ # Public Node.js SDK
│ └── openapi-specs/ # OpenAPI spec definitions
│ └── shared-python/shared/ # Shared library (pip: knowhere-shared)
│ ├── models/database/ # SQLAlchemy ORM models
│ ├── models/schemas/ # Pydantic request/response schemas
│ ├── services/retrieval/ # Core retrieval engine
│ ├── services/chunks/ # DataFrame → ChunkPayload conversion
│ ├── services/ai/ # LLM prompt service & AI client
│ └── utils/ # Text, file, and chunk utilities
└── deploy/ # Docker Compose & deployment scripts
```

> **SDKs live in standalone repos:**
> - Python SDK → [`Ontos-AI/knowhere-python-sdk`](https://github.com/Ontos-AI/knowhere-python-sdk)
> - Node SDK → [`Ontos-AI/knowhere-node-sdk`](https://github.com/Ontos-AI/knowhere-node-sdk)

---

## End-to-End Pipeline Overview
Expand Down
1 change: 1 addition & 0 deletions apps/api/tests/contract/test_demo_documents_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ async def test_should_materialize_demo_source_without_parse_or_credit_charge(
"shared.services.storage.result_storage.get_result_storage",
lambda: fake_result_storage,
)
monkeypatch.setenv("RETRIEVAL_AGENTIC_ENABLED", "false")

async with developer_api_client_factory() as api_client:
empty_cached_response = await api_client.post(
Expand Down
Loading