quantalogic 0.61.3__py3-none-any.whl → 0.92__py3-none-any.whl

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.
Files changed (35) hide show
  1. quantalogic/agent.py +0 -1
  2. quantalogic/flow/__init__.py +16 -34
  3. quantalogic/main.py +11 -6
  4. quantalogic/tools/action_gen.py +1 -1
  5. quantalogic/tools/tool.py +8 -500
  6. quantalogic-0.92.dist-info/METADATA +448 -0
  7. {quantalogic-0.61.3.dist-info → quantalogic-0.92.dist-info}/RECORD +10 -33
  8. {quantalogic-0.61.3.dist-info → quantalogic-0.92.dist-info}/WHEEL +1 -1
  9. quantalogic-0.92.dist-info/entry_points.txt +3 -0
  10. quantalogic/codeact/__init__.py +0 -0
  11. quantalogic/codeact/agent.py +0 -499
  12. quantalogic/codeact/cli.py +0 -232
  13. quantalogic/codeact/constants.py +0 -9
  14. quantalogic/codeact/events.py +0 -78
  15. quantalogic/codeact/llm_util.py +0 -76
  16. quantalogic/codeact/prompts/error_format.j2 +0 -11
  17. quantalogic/codeact/prompts/generate_action.j2 +0 -26
  18. quantalogic/codeact/prompts/generate_program.j2 +0 -39
  19. quantalogic/codeact/prompts/response_format.j2 +0 -11
  20. quantalogic/codeact/tools_manager.py +0 -135
  21. quantalogic/codeact/utils.py +0 -135
  22. quantalogic/flow/flow.py +0 -960
  23. quantalogic/flow/flow_extractor.py +0 -723
  24. quantalogic/flow/flow_generator.py +0 -294
  25. quantalogic/flow/flow_manager.py +0 -637
  26. quantalogic/flow/flow_manager_schema.py +0 -255
  27. quantalogic/flow/flow_mermaid.py +0 -365
  28. quantalogic/flow/flow_validator.py +0 -479
  29. quantalogic/flow/flow_yaml.linkedin.md +0 -31
  30. quantalogic/flow/flow_yaml.md +0 -767
  31. quantalogic/flow/templates/prompt_check_inventory.j2 +0 -1
  32. quantalogic/flow/templates/system_check_inventory.j2 +0 -1
  33. quantalogic-0.61.3.dist-info/METADATA +0 -900
  34. quantalogic-0.61.3.dist-info/entry_points.txt +0 -6
  35. {quantalogic-0.61.3.dist-info → quantalogic-0.92.dist-info}/LICENSE +0 -0
@@ -0,0 +1,448 @@
1
+ Metadata-Version: 2.3
2
+ Name: quantalogic
3
+ Version: 0.92
4
+ Summary: QuantaLogic ReAct Agents
5
+ License: MIT
6
+ Author: Raphaël MANSUY
7
+ Author-email: raphael.mansuy@gmail.com
8
+ Requires-Python: >=3.10,<4.0
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Requires-Dist: aiofiles (>=24.1.0,<25.0.0)
16
+ Requires-Dist: beautifulsoup4 (>=4.12.3,<5.0.0)
17
+ Requires-Dist: boto3 (>=1.34.0,<2.0.0)
18
+ Requires-Dist: botocore (>=1.29.123,<2.0.0)
19
+ Requires-Dist: click (>=8.1.8,<9.0.0)
20
+ Requires-Dist: duckduckgo-search (>=7.2.1,<8.0.0)
21
+ Requires-Dist: faker (>=36.1.1,<37.0.0)
22
+ Requires-Dist: fuzzywuzzy (>=0.18.0,<0.19.0)
23
+ Requires-Dist: google-search-results (>=2.4.2,<3.0.0)
24
+ Requires-Dist: html2text (>=2024.2.26,<2025.0.0)
25
+ Requires-Dist: instructor (>=1.7.2,<2.0.0)
26
+ Requires-Dist: jinja2 (>=3.1.5,<4.0.0)
27
+ Requires-Dist: litellm (>=1.63.14,<2.0.0)
28
+ Requires-Dist: loguru (>=0.7.3,<0.8.0)
29
+ Requires-Dist: markdownify (>=0.14.1,<0.15.0)
30
+ Requires-Dist: markitdown (>=0.0.1a3,<0.0.2)
31
+ Requires-Dist: networkx (>=3.2.1,<4.0.0)
32
+ Requires-Dist: openai (>=1.68.0,<2.0.0)
33
+ Requires-Dist: pathspec (>=0.12.1,<0.13.0)
34
+ Requires-Dist: prompt-toolkit (>=3.0.48,<4.0.0)
35
+ Requires-Dist: psutil (>=7.0.0,<8.0.0)
36
+ Requires-Dist: pydantic (>=2.10.4,<3.0.0)
37
+ Requires-Dist: pytest-asyncio (>=0.25.3,<0.26.0)
38
+ Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
39
+ Requires-Dist: quantalogic-flow (>=0.6.2,<0.7.0)
40
+ Requires-Dist: quantalogic-pythonbox (>=0.9.11)
41
+ Requires-Dist: quantalogic-toolbox (>=0.8.0)
42
+ Requires-Dist: requests (>=2.32.3,<3.0.0)
43
+ Requires-Dist: rich (>=13.9.4,<14.0.0)
44
+ Requires-Dist: serpapi (>=0.1.5,<0.2.0)
45
+ Requires-Dist: sqlalchemy (>=2.0.25,<3.0.0)
46
+ Requires-Dist: tenacity (>=9.0.0,<10.0.0)
47
+ Requires-Dist: tree-sitter (>=0.23.2,<0.24.0)
48
+ Requires-Dist: tree-sitter-c (>=0.23.4,<0.24.0)
49
+ Requires-Dist: tree-sitter-cpp (>=0.23.4,<0.24.0)
50
+ Requires-Dist: tree-sitter-go (>=0.23.4,<0.24.0)
51
+ Requires-Dist: tree-sitter-java (>=0.23.5,<0.24.0)
52
+ Requires-Dist: tree-sitter-javascript (>=0.23.1,<0.24.0)
53
+ Requires-Dist: tree-sitter-python (>=0.23.6,<0.24.0)
54
+ Requires-Dist: tree-sitter-rust (>=0.23.2,<0.24.0)
55
+ Requires-Dist: tree-sitter-scala (>=0.23.4,<0.24.0)
56
+ Requires-Dist: tree-sitter-typescript (>=0.23.2,<0.24.0)
57
+ Requires-Dist: types-pyyaml (>=6.0.12.20241230,<7.0.0.0)
58
+ Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
59
+ Project-URL: Documentation, https://github.com/quantalogic/quantalogic#readme
60
+ Project-URL: Homepage, https://github.com/quantalogic/quantalogic
61
+ Project-URL: Repository, https://github.com/quantalogic/quantalogic
62
+ Description-Content-Type: text/markdown
63
+
64
+ # QuantaLogic: Unleash AI for Coding, Automation, and Conversations
65
+
66
+ **QuantaLogic** is your all-in-one AI framework for building smart agents that code, automate workflows, and chat like pros. Powered by large language models (LLMs) and a versatile toolset, it offers three killer modes: **ReAct** for tackling tough tasks, **Flow** for streamlined processes, and **Chat** for natural, tool-savvy conversations. Whether you’re a coder, a business innovator, or an AI enthusiast, QuantaLogic delivers fast, flexible, and fun solutions. Let’s blast off!
67
+
68
+ > **New: CodeAct**
69
+ >
70
+ > QuantaLogic CodeAct is a powerful, modular extension for creating AI agents that not only reason and act (ReAct) but also use **executable code as their primary action language**. Inspired by the latest research, CodeAct enables agents to solve complex, multi-step tasks by generating, running, and iterating on Python code, all while maintaining context and leveraging a robust tool system. This makes it ideal for advanced automation, mathematical problem-solving, and user-friendly conversational interfaces.
71
+
72
+ [📖 Full Docs](https://quantalogic.github.io/quantalogic/) | [⚡ Quick Guide](./docs/howto/howto.md)
73
+
74
+ ![Demo GIF](./examples/generated_tutorials/python/quantalogic_8s.gif)
75
+
76
+ ---
77
+
78
+ ## Why QuantaLogic?
79
+
80
+ **Why pick QuantaLogic?** It turns the complexity of LLMs into practical magic, making AI work for *you*. From coding scripts to automating business tasks or chatting about the universe, QuantaLogic is your creative sidekick, saving time and unlocking possibilities.
81
+
82
+ - **Versatile Power**: Code, automate, or converse—handle any task.
83
+ - **Your Rules**: Customize agents and tools to match your needs.
84
+ - **Scales Big**: From CLI hacks to enterprise workflows.
85
+ - **Free & Open**: Apache 2.0 license—use it, tweak it, share it.
86
+
87
+ > *“AI should spark joy, not stress. QuantaLogic makes it happen!”*
88
+
89
+ ---
90
+
91
+ ## What is QuantaLogic?
92
+
93
+ **What’s the vibe?** QuantaLogic is a Python framework that harnesses LLMs (like GPT-4o, Claude, or DeepSeek) to create AI agents. These agents wield tools for coding, searching, file ops, and more, all accessible via a slick CLI or Python API. With **ReAct**, **Flow**, and **Chat** modes, it adapts to any challenge—dynamic tasks, structured pipelines, or friendly chats.
94
+
95
+ ### Core Features
96
+ - **ReAct Mode**: Solve problems with LLM reasoning + tool actions.
97
+ - **Flow Mode**: Craft structured workflows with nodes and transitions.
98
+ - **Chat Mode**: Converse naturally with tool-calling smarts.
99
+ - **LLM Integration**: Supports OpenAI, Anthropic, DeepSeek via LiteLLM.
100
+ - **Toolset**: Code execution, web search, file management, and custom tools.
101
+ - **Smart Memory**: Keeps context lean for long tasks or chats.
102
+ - **Real-Time Insights**: Track progress with events and logs.
103
+ - **Safe Execution**: Docker-based tool isolation.
104
+
105
+ ---
106
+
107
+ ## CodeAct vs ReAct: What's the Difference?
108
+
109
+ QuantaLogic supports both the classic **ReAct** paradigm and its advanced extension, **CodeAct**:
110
+
111
+ - **ReAct** (Reason + Act):
112
+ - Based on the [ReAct paper](https://arxiv.org/abs/2210.03629), this approach lets agents *reason* (think step-by-step) and *act* (use tools or code) in a loop. It's great for tasks where language models need to plan, use tools, and adapt to feedback.
113
+
114
+ - **CodeAct**:
115
+ - Builds on ReAct by making **executable Python code** the main language for agent actions. Instead of just calling tools or outputting text, the agent writes and runs code, observes the results (including errors), and iterates until the task is solved.
116
+ - This approach is inspired by recent research ([Yang et al., 2024](https://arxiv.org/html/2402.01030v4)) showing that executable code actions enable more capable and reliable LLM agents.
117
+ - CodeAct is ideal for complex, multi-step tasks, advanced automation, and scenarios where precise, verifiable actions are needed.
118
+
119
+ **Summary**:
120
+ - Use **ReAct** for flexible reasoning with tool use.
121
+ - Use **CodeAct** for tasks where generating and executing code is the best way to solve a problem or automate a workflow.
122
+
123
+ Here’s how it flows:
124
+
125
+ ```mermaid
126
+ graph TD
127
+ A[User] -->|Input| B[QuantaLogic]
128
+ B --> C[ReAct: Solve]
129
+ B --> D[Flow: Automate]
130
+ B --> E[Chat: Converse]
131
+ C --> F[LLM + Tools]
132
+ D --> G[Nodes + Engine]
133
+ E --> H[Persona + Tools]
134
+ F --> I[Output]
135
+ G --> I
136
+ H --> I
137
+ I --> A
138
+ style A fill:#f0f,stroke:#333
139
+ style I fill:#aaf,stroke:#333
140
+ ```
141
+
142
+ ---
143
+
144
+ ## How to Get Started
145
+
146
+ **How do you dive in?** Install it, set it up, and start creating. We’ll guide you through setup, examples, and pro tips to master QuantaLogic in minutes.
147
+
148
+ ### Installation
149
+
150
+ #### What You Need
151
+ - **Python 3.12+**: The fuel for our AI engine.
152
+ - **Docker** (optional): For secure tool execution.
153
+
154
+ #### Option 1: pip (Fast Track)
155
+ ```bash
156
+ pip install quantalogic
157
+ ```
158
+
159
+ #### Option 2: pipx (Clean Setup)
160
+ ```bash
161
+ pipx install quantalogic
162
+ ```
163
+
164
+ #### Option 3: Source (For Hackers)
165
+ ```bash
166
+ git clone https://github.com/quantalogic/quantalogic.git
167
+ cd quantalogic
168
+ python -m venv .venv
169
+ source .venv/bin/activate # Windows: .venv\Scripts\activate
170
+ poetry install
171
+ ```
172
+
173
+ **Insider Secret**: Create a `.env` file for API keys to unlock LLMs:
174
+ ```bash
175
+ echo "OPENAI_API_KEY=sk-your-key" > .env
176
+ echo "DEEPSEEK_API_KEY=ds-your-key" >> .env
177
+ ```
178
+
179
+ ---
180
+
181
+ ### Quick Start Examples
182
+
183
+ Let’s see QuantaLogic shine with these quick demos.
184
+
185
+ #### CLI: Solve a Task
186
+ ```bash
187
+ quantalogic task "Write a Python script to reverse a string"
188
+ ```
189
+ **Output**: A clean, working string-reversal script!
190
+
191
+ #### CLI: Chat It Up
192
+ ```bash
193
+ quantalogic chat --persona "You’re a cosmic guide" "What’s the tallest mountain?"
194
+ ```
195
+ **Output**: A lively response, possibly with search results!
196
+
197
+ #### Python: ReAct Agent
198
+ ```python
199
+ from quantalogic import Agent
200
+
201
+ agent = Agent(model_name="deepseek/deepseek-chat")
202
+ result = agent.solve_task("Write a Python function to reverse a string")
203
+ print(result)
204
+ # Output: "def reverse_string(s): return s[::-1]"
205
+ ```
206
+
207
+ #### Python: Chat Mode
208
+ ```python
209
+ from quantalogic import Agent, DuckDuckGoSearchTool
210
+
211
+ agent = Agent(
212
+ model_name="gpt-4o-mini",
213
+ chat_system_prompt="You’re a curious explorer",
214
+ tools=[DuckDuckGoSearchTool()]
215
+ )
216
+ response = agent.chat("What’s new in quantum computing?")
217
+ print(response)
218
+ # Output: "I checked the latest news! Here’s a breakthrough in quantum computing: [details]."
219
+ ```
220
+
221
+ ---
222
+
223
+ ### The Three Modes: Your Superpowers
224
+
225
+ #### 1. ReAct Framework: Dynamic Task-Solving
226
+ **Why**: Tackle open-ended tasks like coding or research with creative flair.
227
+ **What**: Combines LLM reasoning with tools to iterate toward solutions.
228
+ **How**: The agent thinks, acts, and loops until the task is complete.
229
+
230
+ **Example**: Debug some code.
231
+ ```bash
232
+ quantalogic task "Debug this Python code: def add(a, b): return a - b"
233
+ ```
234
+ **Flow**:
235
+ ```mermaid
236
+ sequenceDiagram
237
+ User->>Agent: "Debug code"
238
+ Agent->>LLM: "Analyze error"
239
+ LLM-->>Agent: "Subtraction should be addition"
240
+ Agent->>PythonTool: "Fix code"
241
+ PythonTool-->>Agent: "def add(a, b): return a + b"
242
+ Agent-->>User: "Fixed code!"
243
+ ```
244
+
245
+ **Memorization Trick**: ReAct = **R**eason + **A**ct, like a detective solving a mystery step-by-step.
246
+
247
+ #### 2. Flow Module: Structured Automation
248
+ **Why**: Perfect for repeatable processes like data pipelines or content creation.
249
+ **What**: A system of nodes (tasks) connected by transitions, run by an engine.
250
+ **How**: Define nodes, link them, and let the workflow hum.
251
+
252
+ **Example**: Process text.
253
+ ```python
254
+ from quantalogic.flow import Workflow, Nodes
255
+
256
+ @Nodes.define(output="processed")
257
+ def uppercase(text: str) -> str:
258
+ return text.upper()
259
+
260
+ workflow = Workflow("uppercase").build()
261
+ result = await workflow.run({"text": "hello world"})
262
+ print(result["processed"]) # "HELLO WORLD"
263
+ ```
264
+
265
+ **Diagram**:
266
+ ```mermaid
267
+ graph LR
268
+ A[Start] --> B[Uppercase Node]
269
+ B --> C[End]
270
+ A -->|Observer| D[Log: NODE_START]
271
+ B -->|Observer| E[Log: NODE_END]
272
+ style A fill:#dfd,stroke:#333
273
+ style C fill:#dfd,stroke:#333
274
+ ```
275
+
276
+ **Memorization Trick**: Flow = a recipe—nodes are ingredients, transitions are steps, and the engine is the chef.
277
+
278
+ **Learn More**: Explore the [Flow YAML DSL Specification](./quantalogic/flow/flow_yaml.md) for advanced workflows.
279
+
280
+ #### 3. Chat Mode: Natural Conversations
281
+ **Why**: Ideal for interactive Q&A or quick info with a touch of tool power.
282
+ **What**: A conversational AI that calls tools when needed, keeping chats smooth.
283
+ **How**: Engages naturally, using tools via ReAct’s XML system.
284
+
285
+ **Example**: Check the weather.
286
+ ```python
287
+ from quantalogic import Agent
288
+
289
+ agent = Agent(model_name="gpt-4o", chat_system_prompt="You’re a travel guide")
290
+ response = agent.chat("What’s the weather in Paris?")
291
+ print(response)
292
+ # Output: "I’ll look it up! Paris is sunny, 20°C today."
293
+ ```
294
+
295
+ **Memorization Trick**: Chat = your AI bestie—talks, listens, and grabs tools like a search engine when curious.
296
+
297
+ ---
298
+
299
+ ### Which Mode to Pick?
300
+
301
+ | Mode | Best For | Style | Tools |
302
+ |------------|------------------------------|---------------------|--------------------|
303
+ | **ReAct** | Coding, research, Q&A | Iterative, adaptive | Dynamic, on-demand |
304
+ | **Flow** | Pipelines, automation | Structured, orderly | Node-specific |
305
+ | **Chat** | Conversations, quick queries | Free-flowing | Contextual |
306
+
307
+ **Pro Tip**: Combine modes! Use Chat for user input, Flow for backend automation, and ReAct for complex tasks.
308
+
309
+ ---
310
+
311
+ ### CLI Mastery
312
+
313
+ The QuantaLogic CLI is your mission control. Here’s the scoop:
314
+
315
+ ```bash
316
+ quantalogic [COMMAND] [OPTIONS]
317
+ ```
318
+
319
+ #### Commands
320
+ - **task**: Run a task.
321
+ ```bash
322
+ quantalogic task "Calculate 5 + 3" --model-name gpt-4o-mini
323
+ ```
324
+ - **chat**: Start a conversation.
325
+ ```bash
326
+ quantalogic chat --persona "AI expert" "What’s the latest in machine learning?"
327
+ ```
328
+ - **list-models**: List LLMs.
329
+ ```bash
330
+ quantalogic list-models --search claude
331
+ ```
332
+
333
+ #### Key Options
334
+ - `--model-name`: Select your LLM (e.g., `anthropic/claude-3.5-sonnet`).
335
+ - `--mode`: Choose ReAct, Flow, or Chat.
336
+ - `--tool-mode`: Prioritize tools in Chat (e.g., `code`).
337
+ - `--verbose`: See detailed logs.
338
+
339
+ **Insider Secret**: Add `--no-stream` for cleaner output on slow terminals!
340
+
341
+ ---
342
+
343
+ ### Advanced Tricks
344
+
345
+ #### Build Custom Tools
346
+ Create your own tools for unique tasks:
347
+ ```python
348
+ from quantalogic.tools import Tool
349
+
350
+ class TimeTool(Tool):
351
+ name = "time_tool"
352
+ def execute(self) -> str:
353
+ from datetime import datetime
354
+ return f"Current time: {datetime.now()}"
355
+
356
+ agent = Agent(model_name="gpt-4o")
357
+ agent.add_tool(TimeTool())
358
+ ```
359
+
360
+ #### Go Async
361
+ Boost performance with async:
362
+ ```python
363
+ import asyncio
364
+ from quantalogic import Agent
365
+
366
+ async def main():
367
+ agent = Agent(model_name="gpt-4o")
368
+ result = await agent.async_chat("Tell me a joke", streaming=True)
369
+ print(result)
370
+
371
+ asyncio.run(main())
372
+ ```
373
+
374
+ #### Monitor Events
375
+ Track every step:
376
+ ```python
377
+ from quantalogic import Agent, console_print_events
378
+
379
+ agent = Agent(model_name="gpt-4o")
380
+ agent.event_emitter.on(["task_start", "tool_execution_start"], console_print_events)
381
+ result = agent.solve_task("Write a poem")
382
+ ```
383
+
384
+ ---
385
+
386
+ ### Memorization Hacks
387
+ - **Modes as Jobs**: ReAct = Freelancer (flexible tasks), Flow = Engineer (structured builds), Chat = Barista (serves up chats).
388
+ - **Tools as Toys**: `PythonTool` = LEGO for coding, `SearchTool` = binoculars for info.
389
+ - **Workflows as Maps**: Nodes = destinations, transitions = roads, engine = GPS.
390
+
391
+ ---
392
+
393
+ ### Simplified Concepts
394
+
395
+ **Tools 101**: Picture QuantaLogic as a handyman. You ask for a fix (task). It grabs tools—a hammer (`WriteFileTool`) or screwdriver (`SearchTool`)—to get the job done right.
396
+
397
+ **Memory Magic**: Imagine a sticky note board. As tasks or chats grow, QuantaLogic condenses old notes to keep space for new ones—efficient and clutter-free.
398
+
399
+ ---
400
+
401
+ ### Example Playground
402
+ Dive into our [Examples Folder](./examples/) for inspiration:
403
+ - **Code Generation**: [05-code.py](./examples/05-code.py)
404
+ - **Workflow Demo**: [story_generator_agent.py](./examples/flow/story_generator/story_generator_agent.py)
405
+ - **Finance Tasks**: [10-finance-agent.py](./examples/10-finance-agent.py)
406
+
407
+ **Video Walkthrough**:
408
+ [![Demo Video](./examples/generated_tutorials/python/quantalogic_long.mp4)](./examples/generated_tutorials/python/quantalogic_long.mp4)
409
+
410
+ ---
411
+
412
+ ### Contributing
413
+
414
+ **Why**: Make AI better for everyone!
415
+ **What**: Add features, squash bugs, or suggest ideas.
416
+ **How**: Fork, branch, code, and PR. Check [CONTRIBUTING.md](./CONTRIBUTING.md).
417
+
418
+ ---
419
+
420
+ ### License
421
+
422
+ QuantaLogic is **Apache 2.0**—free to use, modify, and distribute. Built with ❤️ by Raphaël MANSUY at [QuantaLogic](https://www.quantalogic.app).
423
+
424
+ ---
425
+
426
+ ### API Keys & Models
427
+
428
+ Power up with LLM API keys in a `.env` file:
429
+ ```bash
430
+ OPENAI_API_KEY=sk-your-key
431
+ ANTHROPIC_API_KEY=your-key
432
+ DEEPSEEK_API_KEY=ds-your-key
433
+ ```
434
+
435
+ **Top Models**:
436
+ - `openai/gpt-4o-mini`: Speedy and budget-friendly.
437
+ - `anthropic/claude-3.5-sonnet`: Razor-sharp reasoning.
438
+ - `deepseek/deepseek-reasoner`: Deep problem-solving.
439
+
440
+ **Insider Secret**: Set `LM_STUDIO_API_BASE` for local LLMs—great for offline work!
441
+
442
+ ---
443
+
444
+ ### Let’s Build the Future
445
+
446
+ QuantaLogic is your launchpad for AI awesomeness. Install it, try the examples, and create something epic—code, workflows, or chats. Star the repo, join the community, and let’s make AI unstoppable!
447
+
448
+ [![Star History](https://api.star-history.com/svg?repos=quantalogic/quantalogic&type=Date)](https://star-history.com/#quantalogic/quantalogic?Date)
@@ -1,19 +1,7 @@
1
1
  quantalogic/__init__.py,sha256=qFbvfHOd_chAu536pH816E3uo6CdyAgXCpQOwMXXVnY,1076
2
- quantalogic/agent.py,sha256=VChZXFLEsIIrBtXVQZ-FGZ72GCUXDL3g9br8Vo1t5V8,75072
2
+ quantalogic/agent.py,sha256=y0ncyZCL9VPRFD6tLNOCCo3GD6okGEoFYjUfVtJHn-g,75060
3
3
  quantalogic/agent_config.py,sha256=HNXHmu3BiT4q9i-L2wJKUh6PuiZ_ryTNaB7ga24kaJo,8334
4
4
  quantalogic/agent_factory.py,sha256=soActorasOqs5g6NmlyeEjRYbJceIGGg7wuUS-vA898,6878
5
- quantalogic/codeact/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- quantalogic/codeact/agent.py,sha256=lF5Cq9e_XrBrGwhEZoNNbV-FxAMM2S12_u2og5W4994,22445
7
- quantalogic/codeact/cli.py,sha256=Nxo5Biv08yvA72c860ikKI6Ebp0vlygoVrIMCpYsSxA,10867
8
- quantalogic/codeact/constants.py,sha256=_xJ2QwP5wUE9vwSDm0JTSMC4GVjXAaxHTwcZBjDCoKk,244
9
- quantalogic/codeact/events.py,sha256=4itxGsz54Te9vim13JC8QhacnLQ8cqtOOIyOWUrKFi0,1530
10
- quantalogic/codeact/llm_util.py,sha256=9HqN0prWyAgdt6FYtdzjWoIoPpDavHQ7EIIfJr2Fi8w,2749
11
- quantalogic/codeact/prompts/error_format.j2,sha256=_8fNWxDr3U1Fq8SdzwRIBNsNG1WvPL9IAaos9Enf1C0,258
12
- quantalogic/codeact/prompts/generate_action.j2,sha256=v0LXFxz6L2EwIPesu_mYSVqyNctjHOCIfdawHCb2rtc,1289
13
- quantalogic/codeact/prompts/generate_program.j2,sha256=05_1bAwIJLLBKt4o9c7sRWLHIoiHPyGl9OquieMZT5g,2048
14
- quantalogic/codeact/prompts/response_format.j2,sha256=TwO43dEG-3justNigpX4yyzGR1TGS3YDlpJQq8Z5Vf4,355
15
- quantalogic/codeact/tools_manager.py,sha256=Q_BGtqN3E8QGbobtaYMpQXqqTv_eb5HmIoZelleUMeI,4491
16
- quantalogic/codeact/utils.py,sha256=B7Xowk4id6Sgoyl0eBJsi6JiKa-BAwnj0a5z70vrV1M,5308
17
5
  quantalogic/coding_agent.py,sha256=WFfabRwwPZFV3Pw3seLKpSrFE9Li4pz8Z8mCdsUIDi8,5532
18
6
  quantalogic/config.py,sha256=bmPI2rvQ9M8Zdl1H7K588JgJdnkxSE0L5_i5aBqsagA,564
19
7
  quantalogic/console_print_events.py,sha256=yDtfOr7s5r_gLTgwkl_XoKSkUqNRZhqqq4hwR_oJsUw,2050
@@ -21,22 +9,11 @@ quantalogic/console_print_token.py,sha256=5IRVoPhwWZtSc4LpNoAsCQhCB_RnAW9chycGgy
21
9
  quantalogic/create_custom_agent.py,sha256=g9qh6w436wkiOYVii6f3SPRRY0wyPQ_bL07WnD1JSx0,19989
22
10
  quantalogic/docs_cli.py,sha256=Ie6NwKQuxLKwVQ-cjhFMCttXeiHDjGhNY4hSmMtc0Qg,1664
23
11
  quantalogic/event_emitter.py,sha256=wxzXrNhGiXAaa4EX7qTZEa81i3Mn4JKaU_T6E05QclE,16805
24
- quantalogic/flow/__init__.py,sha256=MD5FAdD6jnVnTPMIOmToKjFxHBQvLmOCT0VeaWhASBc,1295
25
- quantalogic/flow/flow.py,sha256=W2t30c0w939EqcMaJM473tL4ou1UtegiYcv7vdnkECA,42240
26
- quantalogic/flow/flow_extractor.py,sha256=7v5orkfnuAmD_Xu8TeyfB1QM5I_IIXooWokHlCyLY-8,33925
27
- quantalogic/flow/flow_generator.py,sha256=T0F90VX7B0wRoW3fUPCB8tdl3l7-Ph3Fg0SFNUIQ-ec,15812
28
- quantalogic/flow/flow_manager.py,sha256=dWwf1X-GgHTtUYQ-mtE41ct-if7sOJck5vmTkkm5JyA,29402
29
- quantalogic/flow/flow_manager_schema.py,sha256=5JjtNXK-j-QKdvKE2qCjPOgDssGH0cqGDZRoQ9xn8NY,10363
30
- quantalogic/flow/flow_mermaid.py,sha256=TvQyobLK6Idg5q0rQH1Vr_XmuovwxbFKsdZaIxEJqwY,16242
31
- quantalogic/flow/flow_validator.py,sha256=6T4XUPjiHX_oKQVY_dXmRK8aICHnvQCKcyXAaomXtWY,23581
32
- quantalogic/flow/flow_yaml.linkedin.md,sha256=OH1Hoij5ijRZqDju7aaP2GbbTvOcPotBlkaBMajc4UM,1040
33
- quantalogic/flow/flow_yaml.md,sha256=NIf2MWsmfckVqCQmTLfyo__B_lHg7NcSRQEjCxf7Xg0,27321
34
- quantalogic/flow/templates/prompt_check_inventory.j2,sha256=ecIZE9rpSubhKxSubQGVaQkQNsM9oMPW-WSkkn4q9VY,119
35
- quantalogic/flow/templates/system_check_inventory.j2,sha256=FaLO9_MgoKmaVmvaK9pzHSLkrLPWtPQO_ISreSwgRg8,124
12
+ quantalogic/flow/__init__.py,sha256=Csz1c6um5UtLaNO7HxdsP0pB8jTF774ZisrszibNNrQ,552
36
13
  quantalogic/generative_model.py,sha256=os30wdVRq3OsSf8M7TjoaGqJweL99UINQtSGCwoE91k,15913
37
14
  quantalogic/get_model_info.py,sha256=RgblwjjP7G97v_AzoGbXxXBIO082jVCRmvRwxnEpW_s,2991
38
15
  quantalogic/interactive_text_editor.py,sha256=CzefvRiLscFfOKBS4gmrI10Gn3SF_eS5zbiLVQ9Gugw,16334
39
- quantalogic/main.py,sha256=5mnO-fcAOgbD_Bc1W2fe27M47E-nZAOL8I5dVgoC8Mo,11978
16
+ quantalogic/main.py,sha256=CZ1uOWeofvz1kf5vQ6cpbCMhiZK9qfnL-zyJQWeVKLM,12282
40
17
  quantalogic/memory.py,sha256=zbtRuM05jaS2lJll-92dt5JfYVLERnF_m_9xqp2x-k0,6304
41
18
  quantalogic/model_info.py,sha256=j7QqvjEFQDGpDOgQs8uTkVyI3a50Oa_nrsQjyxizTLc,272
42
19
  quantalogic/model_info_list.py,sha256=Xeeb7QS4xEpe9ke7Guh0CxEx-Hl59U4kC-qzVts-eAU,2437
@@ -71,7 +48,7 @@ quantalogic/task_file_reader.py,sha256=oPcB4vTxJ__Y8o7VVABIPOkVw3tGDMdQYwdK27PER
71
48
  quantalogic/task_runner.py,sha256=NB7TqNuwCstCAsTkjGcJSQRapNk8-iXe7d_2qf-fs1s,15815
72
49
  quantalogic/tool_manager.py,sha256=vNA7aBKgdU3wpw_goom6i9rg_64pNZapNxvg4cUhhCI,6983
73
50
  quantalogic/tools/__init__.py,sha256=NU_M6VYYaAbSUtb2Qdu1lsYaDh0G3f_8jnrZTsBD0eY,2390
74
- quantalogic/tools/action_gen.py,sha256=M16voPq7tMR1qiCKTaZAusmVchFbBIluuBbLQH9kEG4,15580
51
+ quantalogic/tools/action_gen.py,sha256=7vnmyYMGecClPNuIYZjFTnWmVO3DDs2Ur2vZOGNG3KI,15590
75
52
  quantalogic/tools/action_gen_safe.py,sha256=7doUtPnV9oxBc02N_N-xcMxmfT9Nd6gHfkNU7MtwVUk,13996
76
53
  quantalogic/tools/agent_tool.py,sha256=MXCXxWHRch7VK4UWhtRP1jeI8Np9Ne2CUGo8vm1oZiM,3064
77
54
  quantalogic/tools/composio/__init__.py,sha256=Yo9ygNx0qQILVhIfRgqpO8fgnCgp5WoZMd3Hm5D20GY,429
@@ -155,7 +132,7 @@ quantalogic/tools/serpapi_search_tool.py,sha256=sX-Noch77kGP2XiwislPNFyy3_4TH6Tw
155
132
  quantalogic/tools/sql_query_tool.py,sha256=jEDZLlxOsB2bzsWlEqsqvTKiyovnRuk0XvgtwW7-WSQ,6055
156
133
  quantalogic/tools/task_complete_tool.py,sha256=L8tuyVoN07Q2hOsxx17JTW0C5Jd_N-C0i_0PtCUQUKU,929
157
134
  quantalogic/tools/terminal_capture_tool.py,sha256=I3Ik9JSgHUPb5eV7ArZv9PISofkWWLh_7fCqX4RJRAg,10567
158
- quantalogic/tools/tool.py,sha256=q94f1b5k44taJTckTJegTRkP_QNN4YB6xhz_0TExvWU,19731
135
+ quantalogic/tools/tool.py,sha256=ONpEHiepXx8JfnbxhjWHMWlPPfGTTCmOKVQnNW91d74,139
159
136
  quantalogic/tools/unified_diff_tool.py,sha256=o7OiYnCM5MjbPlQTpB2OmkMQRI9zjdToQmgVkhiTvOI,14148
160
137
  quantalogic/tools/utilities/__init__.py,sha256=cOsQLYzJDnTY7mUjYaMSF_jmb5kez34MQc9xCWxm2NE,733
161
138
  quantalogic/tools/utilities/csv_processor_tool.py,sha256=Mu_EPVj6iYAclNaVX_vbkekxcNwPYwy7dW1SCY22EwY,9023
@@ -191,8 +168,8 @@ quantalogic/version_check.py,sha256=JyQFTNMDWtpHCLnN-BiakzB2cyXf6kUFsTjvmSruZi4,
191
168
  quantalogic/welcome_message.py,sha256=o4tHdgabNuIV9kbIDPgS3_2yzJhayK30oKad2UouYDc,3020
192
169
  quantalogic/xml_parser.py,sha256=bLLwIwO-VEHWF3heNS7nuPC8wgdYw9F_fVZZNW1figY,11728
193
170
  quantalogic/xml_tool_parser.py,sha256=hGHA1q20JUoTNTbZYmi4FTdA5I25-AGEIP8DwZgQCNA,3897
194
- quantalogic-0.61.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
195
- quantalogic-0.61.3.dist-info/METADATA,sha256=6VPi8J-lWUhZsEKVuCKFuJaWChJ2bHRO6qCQN47I_Cw,33029
196
- quantalogic-0.61.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
197
- quantalogic-0.61.3.dist-info/entry_points.txt,sha256=h74O_Q3qBRCrDR99qvwB4BpBGzASPUIjCfxHq6Qnups,183
198
- quantalogic-0.61.3.dist-info/RECORD,,
171
+ quantalogic-0.92.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
172
+ quantalogic-0.92.dist-info/METADATA,sha256=xdtwOZzJNB328BSzGJngDMEpY4lNqCQ4opasITgwN54,16352
173
+ quantalogic-0.92.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
174
+ quantalogic-0.92.dist-info/entry_points.txt,sha256=wgSq5SRU98yvlRHGEZD1Xn7sS5CSjH2RfUtTa6Qy28Q,52
175
+ quantalogic-0.92.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.1
2
+ Generator: poetry-core 2.1.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ quantalogic=quantalogic.main:cli
3
+
File without changes