Skip to content

Commit 4fc0518

Browse files
no message
1 parent 62ab51c commit 4fc0518

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/installation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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/*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CoTARAG v0.11.0 📊💭➡️⚙️
1+
# CoTARAG v0.11.1 📊💭➡️⚙️
22

33
CoTARAG (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.

cotarag/cota_engine/thought_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)