File tree 3 files changed +15
-20
lines changed
3 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ build-backend = "poetry.core.masonry.api"
50
50
51
51
[tool .poetry .scripts ]
52
52
codegate = " codegate.cli:main"
53
- generate-openapi = " src.codegate.dashboard.dashboard :generate_openapi"
53
+ generate-openapi = " src.codegate.server :generate_openapi"
54
54
55
55
[tool .black ]
56
56
line-length = 100
Original file line number Diff line number Diff line change 1
1
import asyncio
2
- import json
3
2
from typing import AsyncGenerator , List , Optional
4
3
5
4
import requests
6
5
import structlog
7
- from fastapi import APIRouter , Depends , FastAPI
6
+ from fastapi import APIRouter , Depends
8
7
from fastapi .responses import StreamingResponse
9
8
10
9
from codegate import __version__
11
- from codegate .api .v1 import v1
12
10
from codegate .dashboard .post_processing import (
13
11
parse_get_alert_conversation ,
14
12
parse_messages_in_conversations ,
@@ -107,19 +105,3 @@ def version_check():
107
105
"is_latest" : None ,
108
106
"error" : "An unexpected error occurred" ,
109
107
}
110
-
111
-
112
- def generate_openapi ():
113
- # Create a temporary FastAPI app instance
114
- app = FastAPI ()
115
-
116
- # Include your defined router
117
- app .include_router (dashboard_router )
118
- app .include_router (v1 , prefix = "/api/v1" , tags = ["CodeGate API" ])
119
-
120
- # Generate OpenAPI JSON
121
- openapi_schema = app .openapi ()
122
-
123
- # Convert the schema to JSON string for easier handling or storage
124
- openapi_json = json .dumps (openapi_schema , indent = 2 )
125
- print (openapi_json )
Original file line number Diff line number Diff line change
1
+ import json
1
2
import traceback
2
3
3
4
import structlog
@@ -102,3 +103,15 @@ async def health_check():
102
103
app .include_router (v1 , prefix = "/api/v1" , tags = ["CodeGate API" ])
103
104
104
105
return app
106
+
107
+
108
+ def generate_openapi ():
109
+ # Create a temporary FastAPI app instance
110
+ app = init_app (None )
111
+
112
+ # Generate OpenAPI JSON
113
+ openapi_schema = app .openapi ()
114
+
115
+ # Convert the schema to JSON string for easier handling or storage
116
+ openapi_json = json .dumps (openapi_schema , indent = 2 )
117
+ print (openapi_json )
You can’t perform that action at this time.
0 commit comments