mirror of
https://github.com/aljazceru/dev-gpt.git
synced 2025-12-22 16:14:20 +01:00
8 lines
340 B
Python
8 lines
340 B
Python
import os
|
|
from src.options.generate.generator import Generator
|
|
|
|
def test_generator(tmpdir):
|
|
os.environ['VERBOSE'] = 'true'
|
|
generator = Generator("The microservice is very simple, it does not take anything as input and only outputs the word 'test'", "my test", str(tmpdir) + 'microservice', 'gpt-3.5-turbo')
|
|
generator.generate()
|