langchain-chat-with-milvus/document_ai/doc_client.py
2023-11-15 16:20:30 +08:00

9 lines
197 B
Python

import grpc
import documents_pb2_grpc
import documents_pb2
print("正在连接...")
channel = grpc.insecure_channel('localhost:8081')
stub = documents_pb2_grpc.DocumentSearchServiceStub(channel)