Fix typo
This commit is contained in:
parent
f9ab505916
commit
02fb8d439a
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "haiku.rag"
|
name = "haiku.rag"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
description = "Agentic Retrieval Augmented Generation (RAG) with LanceDB"
|
description = "Agentic Retrieval Augmented Generation (RAG) with LanceDB"
|
||||||
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
|
authors = [{ name = "Yiorgis Gozadinos", email = "ggozadinos@gmail.com" }]
|
||||||
license = { text = "MIT" }
|
license = { text = "MIT" }
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ class BaseResearchAgent[T](ABC):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
async def run(
|
async def run(
|
||||||
self, prompt: str, deps: ResearchDependencies, **kwargs
|
self, prompt: str, deps: "ResearchDependencies", **kwargs
|
||||||
) -> AgentRunResult[T]:
|
) -> AgentRunResult[T]:
|
||||||
"""Execute the agent."""
|
"""Execute the agent."""
|
||||||
return await self._agent.run(prompt, deps=deps, **kwargs)
|
return await self._agent.run(prompt, deps=deps, **kwargs)
|
||||||
|
|
|
||||||
2
uv.lock
2
uv.lock
|
|
@ -1111,7 +1111,7 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "haiku-rag"
|
name = "haiku-rag"
|
||||||
version = "0.9.0"
|
version = "0.9.1"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "docling" },
|
{ name = "docling" },
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue