mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-19 04:37:53 +00:00
test only model load on petals
This commit is contained in:
parent
833477ab31
commit
111cfa97f1
@ -55,22 +55,3 @@ class TestBackendServicer(unittest.TestCase):
|
|||||||
self.fail("LoadModel service failed")
|
self.fail("LoadModel service failed")
|
||||||
finally:
|
finally:
|
||||||
self.tearDown()
|
self.tearDown()
|
||||||
|
|
||||||
def test_text(self):
|
|
||||||
"""
|
|
||||||
This method tests if the embeddings are generated successfully
|
|
||||||
"""
|
|
||||||
try:
|
|
||||||
self.setUp()
|
|
||||||
with grpc.insecure_channel("localhost:50051") as channel:
|
|
||||||
stub = backend_pb2_grpc.BackendStub(channel)
|
|
||||||
response = stub.LoadModel(backend_pb2.ModelOptions(Model="facebook/opt-125m"))
|
|
||||||
self.assertTrue(response.success)
|
|
||||||
req = backend_pb2.PredictOptions(Prompt="The capital of France is")
|
|
||||||
resp = stub.Predict(req)
|
|
||||||
self.assertIsNotNone(resp.message)
|
|
||||||
except Exception as err:
|
|
||||||
print(err)
|
|
||||||
self.fail("text service failed")
|
|
||||||
finally:
|
|
||||||
self.tearDown()
|
|
Loading…
Reference in New Issue
Block a user