Spaces:
Sleeping
Sleeping
Commit ·
57bf7d9
1
Parent(s): bd0cdc2
feat: add Hugging Face Space metadata to README and introduce pytest fixtures for testing.
Browse files- README.md +8 -0
- tests/conftest.py +6 -0
README.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# LLM Agent Builder
|
| 2 |
|
| 3 |
This project is a PyCharm application that contains an LLM agent capable of building other LLM agents.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: LLM Agent Builder
|
| 3 |
+
emoji: 🤖
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 8000
|
| 8 |
+
---
|
| 9 |
# LLM Agent Builder
|
| 10 |
|
| 11 |
This project is a PyCharm application that contains an LLM agent capable of building other LLM agents.
|
tests/conftest.py
CHANGED
|
@@ -1,6 +1,12 @@
|
|
| 1 |
import pytest
|
| 2 |
import os
|
| 3 |
import shutil
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
@pytest.fixture
|
| 6 |
def mock_env(monkeypatch):
|
|
|
|
| 1 |
import pytest
|
| 2 |
import os
|
| 3 |
import shutil
|
| 4 |
+
import sys
|
| 5 |
+
from pathlib import Path
|
| 6 |
+
|
| 7 |
+
# Add project root to sys.path
|
| 8 |
+
root_dir = Path(__file__).parent.parent
|
| 9 |
+
sys.path.append(str(root_dir))
|
| 10 |
|
| 11 |
@pytest.fixture
|
| 12 |
def mock_env(monkeypatch):
|