ChatRequest:v108
Path
Value
question
Hey I have a question about using wandb with fastapi in a prod environment. is it recommended to initialize wandb within a specific route function, ie
`@app.route('/')
def my_function():
    wandb.init(...)
`
or should i initialize beforehand:
`wandb.init(...)
@app.route('/')
def my_function():
    ...`
I'm getting a long list of log items in the console and many of them are empty.
chat_history
null
application
api-eval
language
en