Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Documentation Is Not Good Because Beginner Or Intermiate People Cant Undeerstand, Only More 20 Years Of Exp Can I Understand.. I Checked With Exp People So I Am Saying. I Am Intermiate Guy

Documentation is not good because beginner or intermiate people cant undeerstand, only more 20 years of exp can i understand.. i checked with exp people so i am saying. i am intermiate guy

  
  
Posted one year ago
Votes Newest

Answers 42


None

  
  
Posted one year ago

okay let me try..

  
  
Posted one year ago

SuccessfulKoala55 CostlyOstrich36 thanks for the help.. i created creds.. using this command

curl -s -u "antony:antony" 

now i need help to bypass clearml-init manual paste key its wont support .. any other bypass is available

  
  
Posted one year ago

The reason am asking.. while agen is spin up.. it will add queue also ..

  
  
Posted one year ago

You can just copy a ready clearml.conf file and replace the credentials there, you don't actually need to call clearml-init

  
  
Posted one year ago

Also, please don't send messages to the channel when posting in a thread

  
  
Posted one year ago

sure.. sorry for posting msg there..

  
  
Posted one year ago

@Jake H. 
#!/bin/bash

# Get the access key and secret key from the API response
response=$(curl -s -u "antony:antony" 
)
access_key=$(echo "$response" | jq -r '.data.credentials.access_key')
secret_key=$(echo "$response" | jq -r '.data.credentials.secret_key')

# Echo the access key and secret key
echo "Access Key: $access_key"
echo "Secret Key: $secret_key"

# Verify the presence of access key and secret key
if [[ -n "$access_key" && -n "$secret_key" ]]; then
    echo "Access key and secret key are set."
else
    echo "Access key or secret key is missing."
fi
  
  
Posted one year ago

this is my scirpt working fine.. thnks for the help..

  
  
Posted one year ago

but missing part now.. queue.. this one even not there in doc..little worried now 🥶

  
  
Posted one year ago

SuccessfulKoala55 CostlyOstrich36 do u have any idea??

  
  
Posted one year ago

You can open developer tools (F12) and see in the UI what is happening when you create a new queue 🙂

  
  
Posted one year ago
86K Views
42 Answers
one year ago
one year ago
Tags