File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ aiXtend provides python APIs to call AI workflows you can build with aiXplain de
3030#### Pipeline Snippet
3131##### Synchronous
3232
33- ```
33+ ``` python
3434from aixtend.factories.pipeline_factory import PipelineFactory
3535
3636api_key = < API_KEY >
@@ -41,7 +41,7 @@ path = <DATA_URL>
4141response = pipeline.run(data = path)
4242```
4343##### Asynchronous
44- ```
44+ ``` python
4545import time
4646from aixtend.factories.pipeline_factory import PipelineFactory
4747
@@ -62,7 +62,7 @@ if response['status'] != 'FAILED':
6262
6363#### Model Snippet
6464##### Synchronous
65- ```
65+ ``` python
6666from aixtend.factories.model_factory import ModelFactory
6767
6868api_key = < API_KEY >
@@ -73,7 +73,7 @@ path = <DATA_URL>
7373response = model.run(data = path)
7474```
7575##### Asynchronous
76- ```
76+ ``` python
7777import time
7878from aixtend.factories.model_factory import ModelFactory
7979
You can’t perform that action at this time.
0 commit comments