Fernando Souto Gonzalez
Fernando Souto Gonzalez
I managed to solve the issue with the background mode with this code and with the plist configuration UIBackgroundModes `do { try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback, with: .mixWithOthers) try AVAudioSession.sharedInstance().setActive(true) } catch {...
@omarrida For me its working on a radiostation app (only iOS version tested). Now I can listen to streaming music on background but I dont know if it works with...
Trying you exact example: ``` from langchain_core.messages import SystemMessage, HumanMessage from pydantic import BaseModel, Field from langchain_aws import ChatBedrockConverse additionalModelRequestFields = {"inferenceConfig": {"topK": 1}} llm_model = ChatBedrockConverse( model_id="eu.amazon.nova-lite-v1:0", region_name="eu-west-1", temperature=1,...
**Update:** It seems Nova model doesnt support with_structured_output method. I created this small piece to parse content and now its working. ``` def manual_nova_parser(model: TBaseModel, query: str): # Set up...