File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,6 @@ jobs:
254254 TWINE_PASSWORD : ${{ secrets.PYPI_KEY }}
255255 run : |
256256 # Delete existing version
257- python -m twine delete --yes cotarag==0.11.0 || true
257+ python -m twine delete --yes cotarag==0.11.1 || true
258258 # upload new version
259259 python -m twine upload --verbose dist/*
Original file line number Diff line number Diff line change 1- # CoTARAG v0.11.0 📊💭➡️⚙️
1+ # CoTARAG v0.11.1 📊💭➡️⚙️
22
33CoTARAG (Cognitive Thought and Retrieval Augmented Generation) is an advanced AI agent framework that combines two powerful engines:
44
@@ -716,4 +716,4 @@ These new features will enable:
716716
717717## Continuous Integration (CI) Note
718718
719- - OpenAI-based tests may fail due to connection timeouts. Focus on Anthropic and image RAG builds for CI reliability in the current version
719+ - CI tests are not yet stable. Take failures with a grain of salt.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def __init__(self,
4040
4141
4242 def thought (self , input_data ):
43- return {'thought' : self .query_engine .generate_response }
43+ return {'thought' : self .query_engine .generate_response ( input_data ) }
4444
4545 @abstractmethod
4646 def action (self , thought_output ):
You can’t perform that action at this time.
0 commit comments