Spaces:
Running
Running
Update index.html
Browse files- index.html +4 -3
index.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
| 12 |
<h2>Demo Colab Notebook:</h2>
|
| 13 |
|
| 14 |
<a href="https://colab.research.google.com/drive/1wRv65uzfHO3WUJCo1tcRZgadq4XQ-o--">https://colab.research.google.com/drive/1wRv65uzfHO3WUJCo1tcRZgadq4XQ-o--</a><br>
|
| 15 |
-
<
|
| 16 |
<h1>Create and save WolframAlpha APP_ID as an environment variable:</h1>
|
| 17 |
<code>
|
| 18 |
os.environ["WOLFRAM_APP_ID"] = "YOUR_WOLFRAM_APP_ID"<br>
|
|
@@ -20,17 +20,18 @@ os.environ["WOLFRAM_APP_ID"] = "YOUR_WOLFRAM_APP_ID"<br>
|
|
| 20 |
from transformers import load_tool<br>
|
| 21 |
wolframalpha_tool = load_tool('LecJackS/wolfram-alpha-query')<br>
|
| 22 |
</code>
|
| 23 |
-
|
| 24 |
<h1>Test it:</h1>
|
| 25 |
<code>
|
| 26 |
query = "Integrate [ log(x)^2 + e^(x^2) dx ]"<br>
|
| 27 |
print(wolframalpha_tool(query))<br>
|
| 28 |
</code>
|
| 29 |
-
|
| 30 |
<h1>Add tool to agent:</h1>
|
| 31 |
<code>
|
| 32 |
agent = HfAgent("https://api-inference.huggingface.co/models/bigcode/starcoder", additional_tools=[wolframalpha_tool])<br>
|
| 33 |
</code>
|
|
|
|
| 34 |
<h1>Ask the agent to solve some math:</h1>
|
| 35 |
<code>
|
| 36 |
res = agent.run("Solve the following equation: Area of circle of radius 2")<br>
|
|
|
|
| 12 |
<h2>Demo Colab Notebook:</h2>
|
| 13 |
|
| 14 |
<a href="https://colab.research.google.com/drive/1wRv65uzfHO3WUJCo1tcRZgadq4XQ-o--">https://colab.research.google.com/drive/1wRv65uzfHO3WUJCo1tcRZgadq4XQ-o--</a><br>
|
| 15 |
+
<h3>Usage instructions:</h3>
|
| 16 |
<h1>Create and save WolframAlpha APP_ID as an environment variable:</h1>
|
| 17 |
<code>
|
| 18 |
os.environ["WOLFRAM_APP_ID"] = "YOUR_WOLFRAM_APP_ID"<br>
|
|
|
|
| 20 |
from transformers import load_tool<br>
|
| 21 |
wolframalpha_tool = load_tool('LecJackS/wolfram-alpha-query')<br>
|
| 22 |
</code>
|
| 23 |
+
<br>
|
| 24 |
<h1>Test it:</h1>
|
| 25 |
<code>
|
| 26 |
query = "Integrate [ log(x)^2 + e^(x^2) dx ]"<br>
|
| 27 |
print(wolframalpha_tool(query))<br>
|
| 28 |
</code>
|
| 29 |
+
<br>
|
| 30 |
<h1>Add tool to agent:</h1>
|
| 31 |
<code>
|
| 32 |
agent = HfAgent("https://api-inference.huggingface.co/models/bigcode/starcoder", additional_tools=[wolframalpha_tool])<br>
|
| 33 |
</code>
|
| 34 |
+
<br>
|
| 35 |
<h1>Ask the agent to solve some math:</h1>
|
| 36 |
<code>
|
| 37 |
res = agent.run("Solve the following equation: Area of circle of radius 2")<br>
|