Spaces:
Running
Running
zzstoatzz commited on
Commit ·
1c50ff1
1
Parent(s): 6951cdd
fix branch name in example
Browse files
examples/smart_home/src/smart_home/hub.py
CHANGED
|
@@ -7,7 +7,7 @@ from smart_home.settings import settings
|
|
| 7 |
hub_mcp = FastMCP(
|
| 8 |
"Smart Home Hub (phue2)",
|
| 9 |
dependencies=[
|
| 10 |
-
"smart_home@git+https://github.com/jlowin/fastmcp.git
|
| 11 |
],
|
| 12 |
)
|
| 13 |
|
|
|
|
| 7 |
hub_mcp = FastMCP(
|
| 8 |
"Smart Home Hub (phue2)",
|
| 9 |
dependencies=[
|
| 10 |
+
"smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home",
|
| 11 |
],
|
| 12 |
)
|
| 13 |
|
examples/smart_home/src/smart_home/lights/server.py
CHANGED
|
@@ -25,7 +25,7 @@ class HueAttributes(TypedDict, total=False):
|
|
| 25 |
lights_mcp = FastMCP(
|
| 26 |
"Hue Lights Service (phue2)",
|
| 27 |
dependencies=[
|
| 28 |
-
"smart_home@git+https://github.com/jlowin/fastmcp.git
|
| 29 |
],
|
| 30 |
)
|
| 31 |
|
|
|
|
| 25 |
lights_mcp = FastMCP(
|
| 26 |
"Hue Lights Service (phue2)",
|
| 27 |
dependencies=[
|
| 28 |
+
"smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home",
|
| 29 |
],
|
| 30 |
)
|
| 31 |
|