Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
H
Hydra Node Http
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Hydra Node Http
Commits
7c07f8b2
Commit
7c07f8b2
authored
Jul 29, 2022
by
novelailab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
basic FASTAPI app
parent
c210eaf9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
main.py
main.py
+29
-0
No files found.
main.py
0 → 100644
View file @
7c07f8b2
from
fastapi
import
FastAPI
from
pydantic
import
BaseModel
from
fastapi.responses
import
HTMLResponse
app
=
FastAPI
()
@
app
.
on_event
(
"startup"
)
async
def
startup_event
():
print
(
'Start'
)
@
app
.
on_event
(
"shutdown"
)
async
def
shutdown_event
():
print
(
'Shutdown'
)
@
app
.
get
(
"/"
,
response_class
=
HTMLResponse
)
def
root
():
return
"OK"
class
GenerationRequest
(
BaseModel
):
prompt
:
str
n_samples
:
int
=
1
steps
:
int
=
50
class
GenerationOutput
(
BaseModel
):
generation
:
str
version
:
int
=
1
@
app
.
post
(
'/generate'
,
response_model
=
GenerationOutput
)
def
generate
(
request
:
GenerationRequest
):
return
{
"generation"
:
"Hello World"
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment