Deployed b97b20b with MkDocs version: 1.3.0
This commit is contained in:
parent
38c201a13f
commit
9182ba84ed
35 changed files with 11722 additions and 1478 deletions
14
how-to-guides/using-service/using-service.md
Normal file
14
how-to-guides/using-service/using-service.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# How to use a GreatAI service
|
||||
|
||||
After [creating a GreatAI service](/how-to-guides/cerate-service) by wrapping your prediction function, it's time to do some prediction.
|
||||
|
||||
Let's use the following example:
|
||||
|
||||
```python "type_safe_greeter.py"
|
||||
from great_ai import GreatAI
|
||||
|
||||
@GreatAI.create
|
||||
def type_safe_greeter(your_name: str) -> str:
|
||||
return f'Hi {your_name}'
|
||||
```
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue