Bruce

Results 11 comments of Bruce

try init.d or systemd script, then you can use `sudo service cow start | stop | restart`

Maybe this [PR](https://github.com/rochacbruno/flasgger/pull/222) is what you want

@niczky12 @jmetzz @sa-bpelakh you need set `parse` to Swagger cls ``` swag = Swagger( app, template_file=os.path.join( os.getcwd(), 'examples', 'docs', 'template.yml'), parse=True) # need set parse ``` then get validated data...

This is a feature I want too, it is a base feature in my [AntNest]( https://github.com/strongbugman/ant_nest), I will not recreate wheel if aiojobs can provide this

In my opinion, the `wait()`(maybe is not a good name) is a graceful `close()`, it should be same with `close()` for some behavior: 1. if `close()` can be allowed to...

How long it taked when execute the "await dispatch(msg.value)"?, looks like this line code "stucked" the loop. by the way, it need some trick to handle long message-consuming task

You can config the Flasgger though Flask's config, eg: ```python SWAGGER = { "specs": [ { "endpoint": "apispec_1", "route": "/project/apispec_1.json", "rule_filter": lambda rule: True, # all in "model_filter": lambda tag:...

check your `ollama_api_base` in config/setting and make sure there is no `/` after hostname like `http://localhost:11434/`, this maybe wrong because the finnal api url may become `http://localhost:11434//api/generate`(double slash!) which will...