New RunLLM response generated: >>>*# Question* Do...
# runllm-flyte-trial
a
New RunLLM response generated: >>>*# Question* Does, make compile will compile the proto files as well or we need to compile them manually? if it's manual can someone help me with procedure and commands? for ex: I have this proto file: /home/kpattam/mb/flyte/flyteidl/protos/flyteidl/plugins/ray.proto How it was compiled in the current repo? # Answer The
make compile
command does not compile proto files. You need to compile them manually. Here’s how you can do it: 1. Install Dependencies: Ensure Docker is installed locally and run
make download_tooling
to install generator dependencies. 2. Generate Code: Use
make generate
to generate all the code, mock client, and docs for FlyteAdmin Service. For example, to compile the
ray.proto
file located at
/home/kpattam/mb/flyte/flyteidl/protos/flyteidl/plugins/ray.proto
, follow these steps:
Copy code
cd /home/kpattam/mb/flyte/flyteidl
make download_tooling
make generate
This will generate the necessary code from the proto files. Would you like more details on any specific step? Sources: - Flyteidl README Slack Link https://flyte-org.slack.com/archives/CP2HDHKE1/p1723628523.794819 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.