xx
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
from fastapi import FastAPI
|
2 |
-
|
|
|
|
|
|
|
3 |
|
4 |
app = FastAPI()
|
5 |
|
|
|
1 |
from fastapi import FastAPI
|
2 |
+
import fastmcp, inspect
|
3 |
+
print(fastmcp.__version__)
|
4 |
+
print(dir(fastmcp)[:20]) # see what is really exported
|
5 |
+
|
6 |
|
7 |
app = FastAPI()
|
8 |
|