Agam1997
Agam1997
Hey, Same, Unable to add new environment variables on vite. on running the pull command the .env file gets created, but if i add new keys the same are not...
After speaking with Dor on this here's few pointers which i am putting down below: - Should have a Sort class which will provide the direction of the sort ->...
# New update: In the API tests the `test_that_sessions_can_be_listed` remains as is and responsible to test the normal legacy non paginated response ## Tests additions: ``` # File: /parlant/tests/api/test_sessions.py async...
Tests for adapters: ``` async def test_sessions_retrieval(context: _TestContext, new_file: Path) -> None: async with JSONFileDocumentDatabase(context.container[Logger], new_file) as session_db: async with SessionDocumentStore(session_db) as session_store: sessions = [] for i in range(10):...
@mc-dorzo should i start working on the implementation? are these tests enough for now? (do check the adapters one as im not sure if its right)
Hey team, Firstly apologise as there isnt much progress in this issue yet. In the design phase we are contemplating a few things and appreciate inputs. Firstly we have decided...
I did some research on the challenges to using creation_utc as the cursor and here's my findings: Most production deployments of Parlant will use (or should use) mongodb for persistence....
``` class DocumentCollection(ABC, Generic[TDocument]): @abstractmethod async def find( self, filters: Where, sort: Optional[Sort] = None, limit: Optional[int] = None, cursor: Optional[str] = None, ) -> Union[Sequence[TDocument], PaginationResult[TDocument]]: """Finds documents. Returns...
I am working on an adapter which works with ollama locally, although i have not been able to test it properly. I will raise a PR as soon as its...
Hey @docilio Thanks for testing it out! I have already noticed the timeout issue and fixed it late last night with a commit, so it should solve for the string...