PraisonAI 1.0.8__cp312-cp312-manylinux_2_39_x86_64.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.

Potentially problematic release.


This version of PraisonAI might be problematic. Click here for more details.

Files changed (56) hide show
  1. praisonai/__init__.py +6 -0
  2. praisonai/__main__.py +10 -0
  3. praisonai/agents_generator.py +474 -0
  4. praisonai/api/call.py +292 -0
  5. praisonai/auto.py +226 -0
  6. praisonai/chainlit_ui.py +304 -0
  7. praisonai/cli.py +506 -0
  8. praisonai/deploy.py +138 -0
  9. praisonai/inbuilt_tools/__init__.py +24 -0
  10. praisonai/inbuilt_tools/autogen_tools.py +117 -0
  11. praisonai/inc/__init__.py +2 -0
  12. praisonai/inc/config.py +96 -0
  13. praisonai/inc/models.py +128 -0
  14. praisonai/public/android-chrome-192x192.png +0 -0
  15. praisonai/public/android-chrome-512x512.png +0 -0
  16. praisonai/public/apple-touch-icon.png +0 -0
  17. praisonai/public/fantasy.svg +3 -0
  18. praisonai/public/favicon-16x16.png +0 -0
  19. praisonai/public/favicon-32x32.png +0 -0
  20. praisonai/public/favicon.ico +0 -0
  21. praisonai/public/game.svg +3 -0
  22. praisonai/public/logo_dark.png +0 -0
  23. praisonai/public/logo_light.png +0 -0
  24. praisonai/public/movie.svg +3 -0
  25. praisonai/public/thriller.svg +3 -0
  26. praisonai/setup/__init__.py +1 -0
  27. praisonai/setup/build.py +21 -0
  28. praisonai/setup/config.yaml +60 -0
  29. praisonai/setup/post_install.py +23 -0
  30. praisonai/setup/setup_conda_env.py +25 -0
  31. praisonai/setup/setup_conda_env.sh +72 -0
  32. praisonai/setup.py +16 -0
  33. praisonai/test.py +105 -0
  34. praisonai/train.py +276 -0
  35. praisonai/ui/README.md +21 -0
  36. praisonai/ui/chat.py +387 -0
  37. praisonai/ui/code.py +440 -0
  38. praisonai/ui/context.py +283 -0
  39. praisonai/ui/db.py +242 -0
  40. praisonai/ui/public/fantasy.svg +3 -0
  41. praisonai/ui/public/game.svg +3 -0
  42. praisonai/ui/public/logo_dark.png +0 -0
  43. praisonai/ui/public/logo_light.png +0 -0
  44. praisonai/ui/public/movie.svg +3 -0
  45. praisonai/ui/public/thriller.svg +3 -0
  46. praisonai/ui/realtime.py +421 -0
  47. praisonai/ui/realtimeclient/__init__.py +653 -0
  48. praisonai/ui/realtimeclient/realtimedocs.txt +1484 -0
  49. praisonai/ui/realtimeclient/tools.py +236 -0
  50. praisonai/ui/sql_alchemy.py +706 -0
  51. praisonai/version.py +1 -0
  52. praisonai-1.0.8.dist-info/LICENSE +20 -0
  53. praisonai-1.0.8.dist-info/METADATA +496 -0
  54. praisonai-1.0.8.dist-info/RECORD +56 -0
  55. praisonai-1.0.8.dist-info/WHEEL +4 -0
  56. praisonai-1.0.8.dist-info/entry_points.txt +5 -0
praisonai/version.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,496 @@
1
+ Metadata-Version: 2.1
2
+ Name: PraisonAI
3
+ Version: 1.0.8
4
+ Summary: PraisonAI application combines AutoGen and CrewAI or similar frameworks into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration.
5
+ Author: Mervin Praison
6
+ Requires-Python: >=3.10,<3.13
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Provides-Extra: agentops
12
+ Provides-Extra: anthropic
13
+ Provides-Extra: api
14
+ Provides-Extra: autogen
15
+ Provides-Extra: call
16
+ Provides-Extra: chat
17
+ Provides-Extra: code
18
+ Provides-Extra: cohere
19
+ Provides-Extra: crewai
20
+ Provides-Extra: google
21
+ Provides-Extra: gradio
22
+ Provides-Extra: openai
23
+ Provides-Extra: realtime
24
+ Provides-Extra: train
25
+ Provides-Extra: ui
26
+ Requires-Dist: agentops (>=0.3.12) ; extra == "agentops"
27
+ Requires-Dist: aiosqlite (>=0.20.0) ; extra == "chat" or extra == "code" or extra == "realtime"
28
+ Requires-Dist: chainlit (==1.3.0rc1) ; extra == "ui" or extra == "chat" or extra == "code" or extra == "realtime"
29
+ Requires-Dist: crawl4ai (==0.3.4) ; extra == "chat" or extra == "code" or extra == "realtime"
30
+ Requires-Dist: crewai (>=0.32.0) ; extra == "crewai" or extra == "autogen"
31
+ Requires-Dist: duckduckgo_search (>=6.3.0) ; extra == "realtime"
32
+ Requires-Dist: fastapi (>=0.95.0) ; extra == "call"
33
+ Requires-Dist: flaml[automl] (>=2.3.1) ; extra == "call"
34
+ Requires-Dist: flask (>=3.0.0) ; extra == "api"
35
+ Requires-Dist: gradio (>=4.26.0) ; extra == "gradio"
36
+ Requires-Dist: greenlet (>=3.0.3) ; extra == "chat" or extra == "code" or extra == "realtime"
37
+ Requires-Dist: instructor (>=0.4.8) ; extra == "chat" or extra == "call" or extra == "crewai" or extra == "autogen"
38
+ Requires-Dist: langchain-anthropic (>=0.1.13) ; extra == "anthropic"
39
+ Requires-Dist: langchain-cohere (>=0.1.4) ; extra == "cohere"
40
+ Requires-Dist: langchain-google-genai (>=1.0.4) ; extra == "google"
41
+ Requires-Dist: langchain-openai (>=0.1.7) ; extra == "openai"
42
+ Requires-Dist: litellm (>=1.41.8) ; extra == "chat" or extra == "code" or extra == "realtime"
43
+ Requires-Dist: markdown (>=3.5)
44
+ Requires-Dist: openai (>=1.54.0) ; extra == "call"
45
+ Requires-Dist: playwright (>=1.47.0) ; extra == "chat" or extra == "code"
46
+ Requires-Dist: plotly (>=5.24.0) ; extra == "realtime"
47
+ Requires-Dist: praisonai-tools (>=0.0.7) ; extra == "crewai" or extra == "autogen"
48
+ Requires-Dist: pyautogen (>=0.2.19) ; extra == "autogen"
49
+ Requires-Dist: pydantic (<=2.10.1) ; extra == "chat" or extra == "code"
50
+ Requires-Dist: pyngrok (>=1.4.0) ; extra == "call"
51
+ Requires-Dist: pyparsing (>=3.0.0)
52
+ Requires-Dist: python-dotenv (>=0.19.0) ; extra == "call"
53
+ Requires-Dist: rich (>=13.7) ; extra == "chat" or extra == "call"
54
+ Requires-Dist: sqlalchemy (>=2.0.36) ; extra == "chat" or extra == "code" or extra == "realtime"
55
+ Requires-Dist: tavily-python (==0.5.0) ; extra == "chat" or extra == "code" or extra == "realtime"
56
+ Requires-Dist: twilio (>=7.0.0) ; extra == "call"
57
+ Requires-Dist: uvicorn (>=0.20.0) ; extra == "call"
58
+ Requires-Dist: websockets (>=12.0) ; extra == "realtime" or extra == "call"
59
+ Requires-Dist: yfinance (>=0.2.44) ; extra == "realtime"
60
+ Project-URL: Homepage, https://docs.praison.ai
61
+ Project-URL: Repository, https://github.com/mervinpraison/PraisonAI
62
+ Description-Content-Type: text/markdown
63
+
64
+ <p align="center">
65
+ <picture>
66
+ <source media="(prefers-color-scheme: dark)" srcset="docs/logo/dark.png" />
67
+ <source media="(prefers-color-scheme: light)" srcset="docs/logo/light.png" />
68
+ <img alt="PraisonAI Logo" src="docs/logo/light.png" />
69
+ </picture>
70
+ </p>
71
+
72
+ <p align="center">
73
+ <a href="https://github.com/MervinPraison/PraisonAI"><img src="https://static.pepy.tech/badge/PraisonAI" alt="Total Downloads" /></a>
74
+ <a href="https://github.com/MervinPraison/PraisonAI"><img src="https://img.shields.io/github/v/release/MervinPraison/PraisonAI" alt="Latest Stable Version" /></a>
75
+ <a href="https://github.com/MervinPraison/PraisonAI"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License" /></a>
76
+ </p>
77
+
78
+ <div align="center">
79
+
80
+ # Praison AI
81
+
82
+ <a href="https://trendshift.io/repositories/9130" target="_blank"><img src="https://trendshift.io/api/badge/repositories/9130" alt="MervinPraison%2FPraisonAI | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
83
+
84
+ </div>
85
+
86
+ Praison AI, leveraging both AutoGen and CrewAI or any other agent framework, represents a low-code, centralised framework designed to simplify the creation and orchestration of multi-agent systems for various LLM applications, emphasizing ease of use, customization, and human-agent interaction.
87
+
88
+ <div align="center">
89
+ <picture>
90
+ <source media="(prefers-color-scheme: dark)" srcset="docs/images/architecture-dark.png" />
91
+ <source media="(prefers-color-scheme: light)" srcset="docs/images/architecture-light.png" />
92
+ <img alt="PraisonAI Architecture" src="docs/images/architecture-light.png" />
93
+ </picture>
94
+ </div>
95
+
96
+ ## Different User Interfaces:
97
+
98
+ | Interface | Description | URL |
99
+ |---|---|---|
100
+ | **UI** | Multi Agents such as CrewAI or AutoGen | [https://docs.praison.ai/ui/ui](https://docs.praison.ai/ui/ui) |
101
+ | **Chat** | Chat with 100+ LLMs, single AI Agent | [https://docs.praison.ai/ui/chat](https://docs.praison.ai/ui/chat) |
102
+ | **Code** | Chat with entire Codebase, single AI Agent | [https://docs.praison.ai/ui/code](https://docs.praison.ai/ui/code) |
103
+ | **Realtime** | Real-time voice interaction with AI | [https://docs.praison.ai/ui/realtime](https://docs.praison.ai/ui/realtime) |
104
+
105
+ | Other Features | Description | Docs |
106
+ |---|---|---|
107
+ | **Train** | Fine-tune LLMs using your custom data | [https://docs.praison.ai/train](https://docs.praison.ai/train) |
108
+
109
+
110
+ ## Google Colab Multi Agents
111
+
112
+ | | Cookbook | Open in Colab |
113
+ | ------------- | --------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
114
+ | Basic | PraisonAI | <a target="_blank" href="https://colab.research.google.com/github/MervinPraison/PraisonAI/blob/main/cookbooks/praisonai-googlecolab.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" /></a> |
115
+ | Include Tools | PraisonAI Tools | <a target="_blank" href="https://colab.research.google.com/github/MervinPraison/PraisonAI/blob/main/cookbooks/praisonai-tools-googlecolab.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab" /></a> |
116
+
117
+ ## Installation Options
118
+
119
+ ### Using pip
120
+ ```bash
121
+ pip install praisonai
122
+ ```
123
+
124
+ ### Using uv (Fast Python Package Installer)
125
+ ```bash
126
+ # Install uv if you haven't already
127
+ pip install uv
128
+
129
+ # Install from requirements
130
+ uv pip install -r pyproject.toml
131
+
132
+ # Install with extras
133
+ uv pip install -r pyproject.toml --extra code
134
+ uv pip install -r pyproject.toml --extra "crewai,autogen"
135
+ ```
136
+
137
+ ### Framework-specific Installation
138
+ ```bash
139
+ # Install with CrewAI support
140
+ pip install "praisonai[crewai]"
141
+
142
+ # Install with AutoGen support
143
+ pip install "praisonai[autogen]"
144
+
145
+ # Install with both frameworks
146
+ pip install "praisonai[crewai,autogen]"
147
+ ```
148
+
149
+ ### UI and Additional Features
150
+ ```bash
151
+ # Install UI support
152
+ pip install "praisonai[ui]"
153
+
154
+ # Install Chat interface
155
+ pip install "praisonai[chat]"
156
+
157
+ # Install Code interface
158
+ pip install "praisonai[code]"
159
+
160
+ # Install Realtime voice interaction
161
+ pip install "praisonai[realtime]"
162
+
163
+ # Install Call feature
164
+ pip install "praisonai[call]"
165
+ ```
166
+
167
+ ## Quick Start
168
+
169
+ ```bash
170
+ # Set your OpenAI API key
171
+ export OPENAI_API_KEY="Enter your API key"
172
+
173
+ # Initialize with CrewAI (default)
174
+ praisonai --init "create a movie script about dog in moon"
175
+
176
+ # Or initialize with AutoGen
177
+ praisonai --framework autogen --init "create a movie script about dog in moon"
178
+
179
+ # Run the agents
180
+ praisonai
181
+ ```
182
+
183
+ ## Full Automatic Mode
184
+
185
+ ```bash
186
+ # With CrewAI (default)
187
+ praisonai --auto "create a movie script about Dog in Moon"
188
+
189
+ # With AutoGen
190
+ praisonai --framework autogen --auto "create a movie script about Dog in Moon"
191
+ ```
192
+
193
+ ## Framework-specific Features
194
+
195
+ ### CrewAI
196
+ When installing with `pip install "praisonai[crewai]"`, you get:
197
+ - CrewAI framework support
198
+ - PraisonAI tools integration
199
+ - Task delegation capabilities
200
+ - Sequential and parallel task execution
201
+
202
+ ### AutoGen
203
+ When installing with `pip install "praisonai[autogen]"`, you get:
204
+ - AutoGen framework support
205
+ - PraisonAI tools integration
206
+ - Multi-agent conversation capabilities
207
+ - Code execution environment
208
+
209
+ ## Key Features
210
+
211
+ - 🤖 Automated AI Agents Creation
212
+ - 🔄 Use CrewAI or AutoGen Framework
213
+ - 💯 100+ LLM Support
214
+ - 💻 Chat with ENTIRE Codebase
215
+ - 🖥️ Interactive UIs
216
+ - 📄 YAML-based Configuration
217
+ - 🛠️ Custom Tool Integration
218
+ - 🔍 Internet Search Capability (using Crawl4AI and Tavily)
219
+ - 👁️ Vision Language Model (VLM) Support
220
+ - 🎙️ Real-time Voice Interaction
221
+
222
+ ## TL;DR Multi Agents
223
+
224
+ ```bash
225
+ pip install praisonai
226
+ export OPENAI_API_KEY="Enter your API key"
227
+ praisonai --init create a movie script about dog in moon
228
+ praisonai
229
+ ```
230
+
231
+ ## Table of Contents
232
+
233
+ - [Installation](#installation)
234
+ - [Initialise](#initialise)
235
+ - [Run](#run)
236
+ - [Full Automatic Mode](#full-automatic-mode)
237
+ - [User Interface](#user-interface)
238
+ - [Praison AI Chat](#praison-ai-chat)
239
+ - [Create Custom Tools](#create-custom-tools)
240
+ - [Agents Playbook](#agents-playbook)
241
+ - [Include praisonai package in your project](#include-praisonai-package-in-your-project)
242
+ - [Commands to Install Dev Dependencies](#commands-to-install-dependencies)
243
+ - [Other Models](#other-models)
244
+ - [Contributing](#contributing)
245
+ - [Star History](#star-history)
246
+
247
+ ## Installation Multi Agents
248
+
249
+ ```bash
250
+ pip install praisonai
251
+ ```
252
+
253
+ ## Initialise
254
+
255
+ ```bash
256
+ export OPENAI_API_KEY="Enter your API key"
257
+ ```
258
+
259
+ Generate your OPENAI API KEY from here: https://platform.openai.com/api-keys
260
+
261
+ Note: You can use other providers such as Ollama, Mistral ... etc. Details are provided at the bottom.
262
+
263
+ ```bash
264
+ praisonai --init create a movie script about dog in moon
265
+ ```
266
+
267
+ This will automatically create agents.yaml file in the current directory.
268
+
269
+ ### To initialise with a specific agent framework (Optional):
270
+
271
+ ```bash
272
+ praisonai --framework autogen --init create movie script about cat in mars
273
+ ```
274
+
275
+ ## Run
276
+
277
+ ```bash
278
+ praisonai
279
+ ```
280
+
281
+ or
282
+
283
+ ```bash
284
+ python -m praisonai
285
+ ```
286
+
287
+ ### Specify the agent framework (Optional):
288
+
289
+ ```bash
290
+ praisonai --framework autogen
291
+ ```
292
+
293
+ ### Full Automatic Mode
294
+
295
+ ```bash
296
+ praisonai --auto create a movie script about Dog in Moon
297
+ ```
298
+
299
+ ## User Interface
300
+
301
+ ## PraisonAI User Interfaces:
302
+
303
+ | Interface | Description | URL |
304
+ | --------- | ------------------------------------------ | --------------------------------------------------------------------- |
305
+ | **UI** | Multi Agents such as CrewAI or AutoGen | [https://docs.praisonai.com/ui/ui](https://docs.praison.ai/ui/ui) |
306
+ | **Chat** | Chat with 100+ LLMs, single AI Agent | [https://docs.praisonai.com/ui/chat](https://docs.praison.ai/ui/chat) |
307
+ | **Code** | Chat with entire Codebase, single AI Agent | [https://docs.praisonai.com/ui/code](https://docs.praison.ai/ui/code) |
308
+
309
+ ```bash
310
+ pip install -U "praisonai[ui]"
311
+ export OPENAI_API_KEY="Enter your API key"
312
+ chainlit create-secret
313
+ export CHAINLIT_AUTH_SECRET=xxxxxxxx
314
+ praisonai ui
315
+ ```
316
+
317
+ or
318
+
319
+ ```
320
+ python -m praisonai ui
321
+ ```
322
+
323
+ ## Praison AI Chat
324
+
325
+ - https://docs.praison.ai/chat/
326
+
327
+ ```bash
328
+ pip install "praisonai[chat]"
329
+ export OPENAI_API_KEY="Enter your API key"
330
+ praisonai chat
331
+ ```
332
+
333
+ ### Internet Search
334
+
335
+ Praison AI Chat and Praison AI Code now includes internet search capabilities using Crawl4AI and Tavily, allowing you to retrieve up-to-date information during your conversations.
336
+
337
+ ### Vision Language Model Support
338
+
339
+ You can now upload images and ask questions based on them using Vision Language Models. This feature enables visual understanding and analysis within your chat sessions.
340
+
341
+ ## Praison AI Code
342
+
343
+ ```bash
344
+ pip install "praisonai[code]"
345
+ export OPENAI_API_KEY="Enter your API key"
346
+ praisonai code
347
+ ```
348
+
349
+ ### Internet Search
350
+
351
+ Praison AI Code also includes internet search functionality, enabling you to find relevant code snippets and programming information online.
352
+
353
+ ## Create Custom Tools
354
+
355
+ - https://docs.praison.ai/tools/custom/
356
+
357
+ ## Agents Playbook
358
+
359
+ ### Simple Playbook Example
360
+
361
+ ```yaml
362
+ framework: crewai
363
+ topic: Artificial Intelligence
364
+ roles:
365
+ screenwriter:
366
+ backstory: "Skilled in crafting scripts with engaging dialogue about {topic}."
367
+ goal: Create scripts from concepts.
368
+ role: Screenwriter
369
+ tasks:
370
+ scriptwriting_task:
371
+ description: "Develop scripts with compelling characters and dialogue about {topic}."
372
+ expected_output: "Complete script ready for production."
373
+ ```
374
+
375
+ ## Use 100+ Models
376
+
377
+ - https://docs.praison.ai/models/
378
+
379
+ ## Include praisonai package in your project
380
+
381
+ - https://docs.praison.ai/developers/wrapper
382
+ - https://docs.praison.ai/developers/wrapper-tools/
383
+
384
+ ## Option 1: Using RAW YAML
385
+
386
+ ```python
387
+ from praisonai import PraisonAI
388
+
389
+ # Example agent_yaml content
390
+ agent_yaml = """
391
+ framework: "crewai"
392
+ topic: "Space Exploration"
393
+
394
+ roles:
395
+ astronomer:
396
+ role: "Space Researcher"
397
+ goal: "Discover new insights about {topic}"
398
+ backstory: "You are a curious and dedicated astronomer with a passion for unraveling the mysteries of the cosmos."
399
+ tasks:
400
+ investigate_exoplanets:
401
+ description: "Research and compile information about exoplanets discovered in the last decade."
402
+ expected_output: "A summarized report on exoplanet discoveries, including their size, potential habitability, and distance from Earth."
403
+ """
404
+
405
+ # Create a PraisonAI instance with the agent_yaml content
406
+ praisonai = PraisonAI(agent_yaml=agent_yaml)
407
+
408
+ # Run PraisonAI
409
+ result = praisonai.run()
410
+
411
+ # Print the result
412
+ print(result)
413
+ ```
414
+
415
+ ## Option 2: Using separate agents.yaml file
416
+
417
+ Note: Please create agents.yaml file before hand.
418
+
419
+ ```python
420
+ from praisonai import PraisonAI
421
+
422
+ def basic(): # Basic Mode
423
+ praisonai = PraisonAI(agent_file="agents.yaml")
424
+ praisonai.run()
425
+
426
+ if __name__ == "__main__":
427
+ basic()
428
+ ```
429
+
430
+ ## Commands to Install Dependencies:
431
+
432
+ 1. **Install all dependencies, including dev dependencies:**
433
+
434
+ ```sh
435
+ poetry install
436
+ ```
437
+
438
+ 2. **Install only documentation dependencies:**
439
+
440
+ ```sh
441
+ poetry install --with docs
442
+ ```
443
+
444
+ 3. **Install only test dependencies:**
445
+
446
+ ```sh
447
+ poetry install --with test
448
+ ```
449
+
450
+ 4. **Install only dev dependencies:**
451
+
452
+ ```sh
453
+ poetry install --with dev
454
+ ```
455
+
456
+ This configuration ensures that your development dependencies are correctly categorized and installed as needed.
457
+
458
+ ## Contributing
459
+
460
+ - Fork on GitHub: Use the "Fork" button on the repository page.
461
+ - Clone your fork: `git clone https://github.com/yourusername/praisonAI.git`
462
+ - Create a branch: `git checkout -b new-feature`
463
+ - Make changes and commit: `git commit -am "Add some feature"`
464
+ - Push to your fork: `git push origin new-feature`
465
+ - Submit a pull request via GitHub's web interface.
466
+ - Await feedback from project maintainers.
467
+
468
+ ## Star History
469
+
470
+ [![Star History Chart](https://api.star-history.com/svg?repos=MervinPraison/PraisonAI&type=Date)](https://docs.praison.ai)
471
+
472
+ ## License
473
+
474
+ Praison AI is an open-sourced software licensed under the **[MIT license](https://opensource.org/licenses/MIT)**.
475
+
476
+ ## Video Tutorials
477
+
478
+ | Topic | Video |
479
+ |-------|--------|
480
+ | Introduction | [![Introduction](https://img.youtube.com/vi/Fn1lQjC0GO0/0.jpg)](https://www.youtube.com/watch?v=Fn1lQjC0GO0) |
481
+ | Tools Overview | [![Tools Overview](https://img.youtube.com/vi/XaQRgRpV7jo/0.jpg)](https://www.youtube.com/watch?v=XaQRgRpV7jo) |
482
+ | Custom Tools | [![Custom Tools](https://img.youtube.com/vi/JSU2Rndh06c/0.jpg)](https://www.youtube.com/watch?v=JSU2Rndh06c) |
483
+ | Firecrawl Integration | [![Firecrawl](https://img.youtube.com/vi/UoqUDcLcOYo/0.jpg)](https://www.youtube.com/watch?v=UoqUDcLcOYo) |
484
+ | User Interface | [![UI](https://img.youtube.com/vi/tg-ZjNl3OCg/0.jpg)](https://www.youtube.com/watch?v=tg-ZjNl3OCg) |
485
+ | Crawl4AI Integration | [![Crawl4AI](https://img.youtube.com/vi/KAvuVUh0XU8/0.jpg)](https://www.youtube.com/watch?v=KAvuVUh0XU8) |
486
+ | Chat Interface | [![Chat](https://img.youtube.com/vi/sw3uDqn2h1Y/0.jpg)](https://www.youtube.com/watch?v=sw3uDqn2h1Y) |
487
+ | Code Interface | [![Code](https://img.youtube.com/vi/_5jQayO-MQY/0.jpg)](https://www.youtube.com/watch?v=_5jQayO-MQY) |
488
+ | Mem0 Integration | [![Mem0](https://img.youtube.com/vi/KIGSgRxf1cY/0.jpg)](https://www.youtube.com/watch?v=KIGSgRxf1cY) |
489
+ | Training | [![Training](https://img.youtube.com/vi/aLawE8kwCrI/0.jpg)](https://www.youtube.com/watch?v=aLawE8kwCrI) |
490
+ | Realtime Voice Interface | [![Realtime](https://img.youtube.com/vi/frRHfevTCSw/0.jpg)](https://www.youtube.com/watch?v=frRHfevTCSw) |
491
+ | Call Interface | [![Call](https://img.youtube.com/vi/m1cwrUG2iAk/0.jpg)](https://www.youtube.com/watch?v=m1cwrUG2iAk) |
492
+
493
+ ## License
494
+
495
+ Praison AI is an open-sourced software licensed under the **[MIT license](https://opensource.org/licenses/MIT)**.
496
+
@@ -0,0 +1,56 @@
1
+ praisonai/__init__.py,sha256=JrgyPlzZfLlozoW7SHZ1nVJ63rLPR3ki2k5ZPywYrnI,175
2
+ praisonai/__main__.py,sha256=MVgsjMThjBexHt4nhd760JCqvP4x0IQcwo8kULOK4FQ,144
3
+ praisonai/agents_generator.py,sha256=CYqoJj4wHi_2lD39vAiOiLLV7SYg30o5nky09u5ViAE,20801
4
+ praisonai/api/call.py,sha256=iHdAlgIH_oTsEbjaGGu1Jjo6DTfMR-SfFdtSxnOLCeY,11032
5
+ praisonai/auto.py,sha256=NDQiTV8ex_NE5C6AoY26-gMyLZNYrfthgQ6G0Dn1uhU,8304
6
+ praisonai/chainlit_ui.py,sha256=bNR7s509lp0I9JlJNvwCZRUZosC64qdvlFCt8NmFamQ,12216
7
+ praisonai/cli.py,sha256=Rg6vikTv4LHR1R6BIEzcaBWFvkdRZr0nOkMi6RCPKh8,21224
8
+ praisonai/deploy.py,sha256=ByW1bjyCvwEJuluRPhIv-SCN2Xle3R8BoVf1b59fczQ,6027
9
+ praisonai/inbuilt_tools/__init__.py,sha256=fai4ZJIKz7-iOnGZv5jJX0wmT77PKa4x2jqyaJddKFA,569
10
+ praisonai/inbuilt_tools/autogen_tools.py,sha256=kJdEv61BTYvdHOaURNEpBcWq8Rs-oC03loNFTIjT-ak,4687
11
+ praisonai/inc/__init__.py,sha256=sPDlYBBwdk0VlWzaaM_lG0_LD07lS2HRGvPdxXJFiYg,62
12
+ praisonai/inc/config.py,sha256=up2-841ruK7MCUUT3xkWBA5S6WsY0sFODNfcT6Q4Wms,3333
13
+ praisonai/inc/models.py,sha256=1kwP9o56AvN8L38x7eeAzudjAvstN0uWu-woQkgxAe4,5449
14
+ praisonai/public/android-chrome-192x192.png,sha256=ENJEqhDE3XEQViRhKNDezQKRiOiuHOUj5nzRN43fz50,6535
15
+ praisonai/public/android-chrome-512x512.png,sha256=4txEwB0cJkxFVarRdvFGJZR1DtWJ2h-L_2cUEjBXHAc,15244
16
+ praisonai/public/apple-touch-icon.png,sha256=YLlEhlenm24QY_yv-5wb_mxDxJ8H22H_S8Khlvz-zVA,6001
17
+ praisonai/public/fantasy.svg,sha256=4Gs3kIOux-pjGtw6ogI_rv5_viVJxnE5gRwGilsSg0o,1553
18
+ praisonai/public/favicon-16x16.png,sha256=jFiLfRSaEw_kwSxVQQUNV7Auc6oDRvZVKEIiUqC7vYE,429
19
+ praisonai/public/favicon-32x32.png,sha256=cgKvhHroXWNl1Err0TFr8tGepjNzIBpaTinFUT5pbZk,872
20
+ praisonai/public/favicon.ico,sha256=SOcyfycBi_8rd9ff3gmSuZ3M-rkxv1RpHi76cwvmsQ0,15406
21
+ praisonai/public/game.svg,sha256=y2QMaA01m8XzuDjTOBWzupOC3-TpnUl9ah89mIhviUw,2406
22
+ praisonai/public/logo_dark.png,sha256=frHz1zkrnivGssJgk9iy1cabojkVgm8B4MllFwL_CnI,17050
23
+ praisonai/public/logo_light.png,sha256=8cQRti_Ysa30O3_7C3ku2w40LnVUUlUok47H-3ZZHSU,19656
24
+ praisonai/public/movie.svg,sha256=aJ2EQ8vXZusVsF2SeuAVxP4RFJzQ14T26ejrGYdBgzk,1289
25
+ praisonai/public/thriller.svg,sha256=2dYY72EcgbEyTxS4QzjAm37Y4srtPWEW4vCMFki98ZI,3163
26
+ praisonai/setup/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
27
+ praisonai/setup/build.py,sha256=NyTAXQ_UZ8vKo_KwCINp8ctmauZyCMDkw1rys3ay0ec,646
28
+ praisonai/setup/config.yaml,sha256=sr_D1RIvv3LQ_eueOMZV0rAUiWTR-n2xuE1RhKK6b34,1211
29
+ praisonai/setup/post_install.py,sha256=rlUYJhT4JXVrL2RQih5VUPr4PQEmpVypoRpe_vJDMBk,730
30
+ praisonai/setup/setup_conda_env.py,sha256=4QiWrqgEObivzOMwfJgWaCPpUEpB68cQ6lFwVwFoufk,816
31
+ praisonai/setup/setup_conda_env.sh,sha256=te7s0KHsTi7XM-vkNvE0dKC1HeU2tXxqE-sPUScV6fY,2718
32
+ praisonai/setup.py,sha256=0jHgKnIPCtBZiGYaYyTz3PzrJI6nBy55VXk2UctXlDo,373
33
+ praisonai/test.py,sha256=OL-wesjA5JTohr8rtr6kWoaS4ImkJg2l0GXJ-dUUfRU,4090
34
+ praisonai/train.py,sha256=DvORlrwKOD-2v4r_z84eV3LsfzpNs-WnPKb5cQB3_t4,11071
35
+ praisonai/ui/README.md,sha256=QG9yucvBieVjCjWFzu6hL9xNtYllkoqyJ_q1b0YYAco,1124
36
+ praisonai/ui/chat.py,sha256=rlYwhTd3giBuvtK4Yc9kf6N9jfVT0VrZ-mLIzhANGiQ,13565
37
+ praisonai/ui/code.py,sha256=GD_xQTo7qzpOM98tu4MOPsviJdXU__Ta3JIfsjoRe6U,15797
38
+ praisonai/ui/context.py,sha256=oWO2I_WBZb7kZnuXItf18EJX0ZQv-1nAd8rxhwhuuDU,11871
39
+ praisonai/ui/db.py,sha256=t_Y0mtWp8RppfPoIH2nZ1eg86apgfBRM_U2bIp94Lkc,9136
40
+ praisonai/ui/public/fantasy.svg,sha256=4Gs3kIOux-pjGtw6ogI_rv5_viVJxnE5gRwGilsSg0o,1553
41
+ praisonai/ui/public/game.svg,sha256=y2QMaA01m8XzuDjTOBWzupOC3-TpnUl9ah89mIhviUw,2406
42
+ praisonai/ui/public/logo_dark.png,sha256=frHz1zkrnivGssJgk9iy1cabojkVgm8B4MllFwL_CnI,17050
43
+ praisonai/ui/public/logo_light.png,sha256=8cQRti_Ysa30O3_7C3ku2w40LnVUUlUok47H-3ZZHSU,19656
44
+ praisonai/ui/public/movie.svg,sha256=aJ2EQ8vXZusVsF2SeuAVxP4RFJzQ14T26ejrGYdBgzk,1289
45
+ praisonai/ui/public/thriller.svg,sha256=2dYY72EcgbEyTxS4QzjAm37Y4srtPWEW4vCMFki98ZI,3163
46
+ praisonai/ui/realtime.py,sha256=qpgcGA8CIUfYuSXtQM0zSlxktFtUZXsryn0Tru-R5wU,15304
47
+ praisonai/ui/realtimeclient/__init__.py,sha256=zA2xa7rBUSw77wFkndJMQNNPqdH6ywQ3uf4WSYHjNfs,27513
48
+ praisonai/ui/realtimeclient/realtimedocs.txt,sha256=hmgd8Uwy2SkjSndyyF_-ZOaNxiyHwGaQLGc67DvV-sI,26395
49
+ praisonai/ui/realtimeclient/tools.py,sha256=IJOYwVOBW5Ocn5_iV9pFkmSKR3WU3YpX3kwF0I3jikQ,7855
50
+ praisonai/ui/sql_alchemy.py,sha256=cfyL9uFfuizKFvW0aZfUBlJWPQYI-YBi1v4vxlkb1BQ,29615
51
+ praisonai/version.py,sha256=ugyuFliEqtAwQmH4sTlc16YXKYbFWDmfyk87fErB8-8,21
52
+ praisonai-1.0.8.dist-info/LICENSE,sha256=kqvFysVlnFxYOu0HxCe2HlmZmJtdmNGOxWRRkT9TsWc,1035
53
+ praisonai-1.0.8.dist-info/METADATA,sha256=UTDz2D777L1xmVE57H2QTOSLpf2BOrSYAT0NnJreHyA,17374
54
+ praisonai-1.0.8.dist-info/WHEEL,sha256=x1HiyTP_r-PIOu3STHzjukjf5kVLXzgVftSXf5bl8AU,110
55
+ praisonai-1.0.8.dist-info/entry_points.txt,sha256=I_xc6a6MNTTfLxYmAxe0rgey0G-_hbY07oFW-ZDnkw4,135
56
+ praisonai-1.0.8.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.1
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-manylinux_2_39_x86_64
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ praisonai=praisonai.__main__:main
3
+ praisonai-call=praisonai.api.call:main
4
+ setup-conda-env=setup.setup_conda_env:main
5
+