Emanuel Ferreira

Results 39 comments of Emanuel Ferreira

@frangio could you tell me why this approach doesn't work? could you give me suggestions to improve it?

@frangio it will be a Governance with 2 tokens, to two different people, like staking tokens and the common token, so who have the staking token have the governance power...

@frangio I was using the getPastVotes, is it much different from my Implementation?

@Amxx @frangio aI believe this both approaches using only `getVotes` will not provide support to https://github.com/OpenZeppelin/openzeppelin-contracts/blob/65b45726b34dafe8fc3ef78c3d4b7b3f404f61ad/contracts/governance/extensions/GovernorVotesQuorumFraction.sol#L47-L49 so I did this implementation thinking on this case, because the voting weight will...

Tracestack ``` File "/Users/emanuel/Library/Caches/pypoetry/virtualenvs/experiemental/lib/python3.11/site-packages/qdrant_client/async_qdrant_remote.py", line 1431, in delete await self.openapi_client.points_api.delete_points( File "/Users/emanuel/Library/Caches/pypoetry/virtualenvs/experiemental/lib/python3.11/site-packages/qdrant_client/http/api/points_api.py", line 824, in delete_points return await self._build_for_delete_points( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/emanuel/Library/Caches/pypoetry/virtualenvs/experiemental/lib/python3.11/site-packages/qdrant_client/http/api_client.py", line 148, in request return await self.send(request, type_)...

snippet to get the tweet url ```js const tweet = async (url: string) => { try { const tweet = await client.v1.tweet(url, {}); const tweetUrl = `https://twitter.com/${tweet.user.screen_name}/status/${tweet.id_str}`; return { ok:...

You should use `file_path` instead of `file` as an argument ```py from pathlib import Path from llama_index import download_loader PyMuPDFReader = download_loader("PyMuPDFReader") loader = PyMuPDFReader() documents = loader.load(file_path=Path('./article.pdf'), metadata=True) ```

> I've found the code needs further modification now. My version is: > > ```python > PyMuPDFReader = download_loader("PyMuPDFReader") > loader = PyMuPDFReader() > documents = loader.load(file_path=Path('./document.pdf'), metadata=False) > >...