Release 0.5.0a4 (#997)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-03 14:51:19 -03:00 committed by GitHub
commit 3017525160
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 630 additions and 556 deletions

1182
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "0.5.0a3"
version = "0.5.0a4"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@logspace.ai>"]
maintainers = [

View file

@ -7,7 +7,6 @@ from langflow.api.v1.schemas import ChatResponse, PromptResponse
from typing import Any, Dict, List, Optional
from fastapi import WebSocket
from langflow.services.getters import get_chat_service

View file

@ -1,4 +1,3 @@
from fastapi import WebSocket
from langflow.api.v1.schemas import ChatMessage
from langflow.processing.base import get_result_and_steps
from langflow.interface.utils import try_setting_streaming_options