Update README.md
Browse files
README.md
CHANGED
|
@@ -117,12 +117,16 @@ Here provides a code snippet to show you how to run the LLM-BEM-Engineer.
|
|
| 117 |
[](https://colab.research.google.com/github/Gangjiang1/EPlus-LLM/blob/main/v2/Example.ipynb)
|
| 118 |
|
| 119 |
```python
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
### =============================================###
|
| 121 |
### Manager Agent ###
|
| 122 |
### =============================================###
|
| 123 |
|
| 124 |
-
#
|
| 125 |
-
# ⚠️ Please make sure to replace the API key with your own one.
|
| 126 |
|
| 127 |
from openai import OpenAI
|
| 128 |
client = OpenAI(api_key="your_own_api", base_url="https://api.deepseek.com")
|
|
|
|
| 117 |
[](https://colab.research.google.com/github/Gangjiang1/EPlus-LLM/blob/main/v2/Example.ipynb)
|
| 118 |
|
| 119 |
```python
|
| 120 |
+
# ⚠️ Please make sure:
|
| 121 |
+
# (1) You have adequate GPU memory.
|
| 122 |
+
# (2) You have replaced your own API key.
|
| 123 |
+
# (3) Your EnergyPlus engine is version 9.6.
|
| 124 |
+
|
| 125 |
### =============================================###
|
| 126 |
### Manager Agent ###
|
| 127 |
### =============================================###
|
| 128 |
|
| 129 |
+
# Manager Agent (Foundation LLM: DeepSeek-Chat).
|
|
|
|
| 130 |
|
| 131 |
from openai import OpenAI
|
| 132 |
client = OpenAI(api_key="your_own_api", base_url="https://api.deepseek.com")
|