Gabriel Fior

Results 14 comments of Gabriel Fior

The script is indeed added to the Scripts folder of Miniconda (C:\Users\d91421\AppData\Local\Continuum\miniconda3\envs\brasa36\Scripts\fz), but the command fz returns the following: ```bash (brasa36) C:\Users\d91421>fz 'fz' is not recognized as an internal or...

No. I realized that, if I change the name of the fz file (in my case located under `C:\Users\username\AppData\Local\Continuum\miniconda3\envs\my-env\Scripts`) to fz.exe, the cmd prompt is able to start the script,...

FYI I just realized that one could use the [py2exe](http://www.py2exe.org/index.cgi/Tutorial) package to create an exe file for windows from a setup.py file. It could be an interesting option for windows...

I have a different suggestion regardiing data visualization. What about using a ready-to-use solution like Redash (https://redash.io/)? There you can just connect your database, write SQL queries and create the...

> Didn't works for me, I am using Azure open AI service, gpt 4 model ` def run(self): agents = QueryAgents(self.ticket_detail_tools) tasks = QueryTasks(self.ticket_detail_tools) > > ``` > azure_llm =...

I actually figured out that one can write `object.column is not None` and use that as filter. So problem solved. For reference, the subgraph is https://api.thegraph.com/subgraphs/name/protofire/omen-xdai/graphql

Correction - the IS NOT NULL filter_condition I mentioned earlier does not work, see screenshot below ```python where_stms.append(fpmm.resolutionTimestamp is not None) ``` SUBGRAPH_URL = https://api.thegraph.com/subgraphs/name/protofire/omen-xdai/graphql ![image](https://github.com/0xPlaygrounds/subgrounds/assets/4126235/8ff9b2a3-7d62-47be-bdf0-6a1e4869f25b) They get defined as...

@0xMochan created a PR for this (https://github.com/0xPlaygrounds/subgrounds/pull/53). I got the filter to work after all. Thanks for the help.

I would also be interested in this - namely to auto-generate Python classes from a given subgraph after loading. I'm trying this (without success) ```python $ UNISWAP_SUBGRAPH = 'https://api.thegraph.com/subgraphs/name/messari/aave-v2-ethereum' $...