Delgermurun
Delgermurun
**Describe the bug** ```python class FooGenerator(Executor): @requests(on='/') def generate(self, docs: DocumentArray, **kwargs): t = 'foo' self.logger.info(f'formatting "{t}"...') self.logger.info(f'formatting [{t}]...') print(f'formatting [{t}]...') f = Flow().add(uses=FooGenerator) with f: f.post(on='/') ``` above code...
Closes #70
so it can run background asynchronously without blocking
https://github.com/kuprel/min-dalle is a fast, minimal port of DALL·E Mini to PyTorch. Also, this version is actively maintained.
**Describe the bug** ```python from datetime import datetime from jina import Flow, Executor, DocumentArray, Document class MyExecutor(Executor): def foo(self, **kwargs): print('foo') f = Flow().add(uses=MyExecutor) with f: da = DocumentArray([Document(text='hello', tags={'date':...
Adding [SceneXplain](https://scenex.jina.ai/) integration. An Image Captioning Tool: Use this tool to generate a detailed caption for an image. The input can be an image file of any format, and the...
As mentioned [here](https://github.com/Significant-Gravitas/Auto-GPT-Plugins/pull/54#discussion_r1177429033), created a class. Also improved description and name.
I've tried to use `sass`, but it throws error. I couldn't even use `css` file. ``` 1:50:28 PM server.1 | [nodemon] to restart at any time, enter `rs` 1:50:28 PM...
Twitter support unicode hash tag. Do you plan supporting this? https://twitter.com/gbaterdene/status/339022419534675969 this is example tweet.
Now we have more APIs for updating executors: - `transferOwnership` - `adoptAnonymous` - `rename` - `exportToPublicDomain` - `patchMetadata` I assume we will have both UI and CLI for these actions....