Skip to content

Commit 00ad25d

Browse files
Merge pull request #58 from MervinPraison/develop
v0.0.32
2 parents dc3f248 + eecdeb4 commit 00ad25d

12 files changed

+376
-113
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.11-slim
22
WORKDIR /app
33
COPY . .
4-
RUN pip install flask praisonai==0.0.31 gunicorn markdown
4+
RUN pip install flask praisonai==0.0.32 gunicorn markdown
55
EXPOSE 8080
66
CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]

docs/api/praisonai/deploy.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ <h1 class="title">Module <code>praisonai.deploy</code></h1>
8484
file.write(&#34;FROM python:3.11-slim\n&#34;)
8585
file.write(&#34;WORKDIR /app\n&#34;)
8686
file.write(&#34;COPY . .\n&#34;)
87-
file.write(&#34;RUN pip install flask praisonai==0.0.31 gunicorn markdown\n&#34;)
87+
file.write(&#34;RUN pip install flask praisonai==0.0.32 gunicorn markdown\n&#34;)
8888
file.write(&#34;EXPOSE 8080\n&#34;)
8989
file.write(&#39;CMD [&#34;gunicorn&#34;, &#34;-b&#34;, &#34;0.0.0.0:8080&#34;, &#34;api:app&#34;]\n&#39;)
9090

@@ -250,7 +250,7 @@ <h2 id="raises">Raises</h2>
250250
file.write(&#34;FROM python:3.11-slim\n&#34;)
251251
file.write(&#34;WORKDIR /app\n&#34;)
252252
file.write(&#34;COPY . .\n&#34;)
253-
file.write(&#34;RUN pip install flask praisonai==0.0.31 gunicorn markdown\n&#34;)
253+
file.write(&#34;RUN pip install flask praisonai==0.0.32 gunicorn markdown\n&#34;)
254254
file.write(&#34;EXPOSE 8080\n&#34;)
255255
file.write(&#39;CMD [&#34;gunicorn&#34;, &#34;-b&#34;, &#34;0.0.0.0:8080&#34;, &#34;api:app&#34;]\n&#39;)
256256

@@ -416,7 +416,7 @@ <h2 id="raises">Raises</h2>
416416
file.write(&#34;FROM python:3.11-slim\n&#34;)
417417
file.write(&#34;WORKDIR /app\n&#34;)
418418
file.write(&#34;COPY . .\n&#34;)
419-
file.write(&#34;RUN pip install flask praisonai==0.0.31 gunicorn markdown\n&#34;)
419+
file.write(&#34;RUN pip install flask praisonai==0.0.32 gunicorn markdown\n&#34;)
420420
file.write(&#34;EXPOSE 8080\n&#34;)
421421
file.write(&#39;CMD [&#34;gunicorn&#34;, &#34;-b&#34;, &#34;0.0.0.0:8080&#34;, &#34;api:app&#34;]\n&#39;)</code></pre>
422422
</details>

docs/tavily.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tavily PraisonAI Integration
22

3-
````
3+
```
44
from praisonai_tools import BaseTool
55
from langchain.utilities.tavily_search import TavilySearchAPIWrapper
66

mkdocs.yml

+29-30
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,45 @@
1-
# Website Info
21
site_name: PraisonAI Documentation
32
site_url: https://docs.praison.ai
43
site_author: MervinPraison
54

6-
# Repository
75
repo_name: MervinPraison/PraisonAI
86
repo_url: https://github.com/MervinPraison/PraisonAI
97

108
nav:
11-
- 🏠 Home: 'index.md'
12-
- TL;DR: tldr.md
13-
- User Interface: ui.md
14-
- Other Models: other_models.md
9+
- 🏠 Home:
10+
- TL;DR: tldr.md
11+
- User Interface: ui.md
12+
- Other Models: other_models.md
1513

16-
- ⚡ Getting Started:
17-
- Installation: installation.md
18-
- Initialise: initialise.md
19-
- Run: run.md
14+
- ⚡ Getting Started:
15+
- Installation: installation.md
16+
- Initialise: initialise.md
17+
- Run: run.md
2018

21-
- ⚙️ Tools:
22-
- Tools: tools.md
23-
- Create Custom Tools: custom_tools.md
24-
- Langchain: langchain.md
25-
- Firecrawl: firecrawl.md
26-
- Wikipedia: wikipedia.md
27-
- YouTube: youtube.md
28-
- Tavily: tavily.md
29-
- Reddit: reddit.md
30-
- You.com: you.com.md
19+
- ⚙️ Tools:
20+
- Tools: tools.md
21+
- Create Custom Tools: custom_tools.md
22+
- Langchain: langchain.md
23+
- Firecrawl: firecrawl.md
24+
- Wikipedia: wikipedia.md
25+
- YouTube: youtube.md
26+
- Tavily: tavily.md
27+
- Reddit: reddit.md
28+
- You.com: you.com.md
3129

32-
- 📚 Developers:
33-
- Test: test.md
34-
- Agents Playbook: agents_playbook.md
35-
- Wrapper: wrapper.md
36-
- Deploy: deploy.md
30+
- 📚 Developers:
31+
- Test: test.md
32+
- Agents Playbook: agents_playbook.md
33+
- Wrapper: wrapper.md
34+
- Deploy: deploy.md
3735

38-
- 🤗 Contributing:
39-
- Home: contributing.md
36+
- 🤗 Contributing:
37+
- Home: contributing.md
38+
39+
- 🛠️ API reference:
40+
- API: api.md
41+
- API Code: api/praisonai/index.html
4042

41-
- 🛠️ API reference:
42-
- API: api.md
43-
- API Code: api/praisonai/index.html
4443

4544
theme:
4645
name: material

0 commit comments

Comments
 (0)