New RunLLM response generated: >>>*# Question* Hi...
# runllm-flyte-trial
j
New RunLLM response generated: >>>*# Question* Hi All, I am a student and just started learning flyte and union platform. I am facing the below issue while running ' !union run --remote --project flytesnacks --domain development bert-fine-tune.py bert_ft --repo_name mrafiuw/llm-repo' # Answer The error you're encountering is likely due to a misconfiguration in the Flyte setup, specifically related to the remote execution configuration. According to this GitHub issue, such errors often occur when the service endpoint is not correctly configured or accessible. To resolve this, ensure that your
~/.flyte/config.yaml
file is correctly configured. The
admin.endpoint
should point to the correct Flyte service endpoint. For example:
Copy code
admin:
  endpoint: dns:///flyte.myexample.com:30081
  authType: Pkce
  insecure: true
logger:
  show-source: true
  level: 0
storage:
  connection:
    access-key: minio
    auth-type: accesskey
    disable-ssl: true
    endpoint: http://minio.flyte.svc.cluster.local:9000
    region: us-east-1
    secret-key: miniostorage
  type: minio
  container: "my-s3-bucket"
  enable-multicontainer: false
Would you like more details on configuring Flyte or troubleshooting this issue? Sources: - GitHub Issue #5663 Slack Link https://.slack.com/archives/CP2HDHKE1/p1727828331.258609 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.