Commit
·
9c6108c
1
Parent(s):
e19995d
Correct requirements
Browse files- requirements.txt +2 -1
- tools/CodeToolkit.py +1 -1
requirements.txt
CHANGED
|
@@ -17,4 +17,5 @@ wikipedia
|
|
| 17 |
pgvector
|
| 18 |
python-dotenv
|
| 19 |
pytesseract
|
| 20 |
-
matplotlib
|
|
|
|
|
|
| 17 |
pgvector
|
| 18 |
python-dotenv
|
| 19 |
pytesseract
|
| 20 |
+
matplotlib
|
| 21 |
+
docx
|
tools/CodeToolkit.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
from langchain_core.tools import tool
|
| 2 |
import os
|
| 3 |
import io
|
| 4 |
import sys
|
|
@@ -14,6 +13,7 @@ import numpy as np
|
|
| 14 |
import pandas as pd
|
| 15 |
import matplotlib.pyplot as plt
|
| 16 |
from PIL import Image
|
|
|
|
| 17 |
|
| 18 |
|
| 19 |
class CodeInterpreter:
|
|
|
|
|
|
|
| 1 |
import os
|
| 2 |
import io
|
| 3 |
import sys
|
|
|
|
| 13 |
import pandas as pd
|
| 14 |
import matplotlib.pyplot as plt
|
| 15 |
from PIL import Image
|
| 16 |
+
from langchain_core.tools import tool
|
| 17 |
|
| 18 |
|
| 19 |
class CodeInterpreter:
|